Giter Site home page Giter Site logo

vim-pass's Introduction

vim-pass Powered by vital.vim Powered by vital-codec

Vim password-store API. see Pass: The Standard Unix Password Manager

Currenlty get support. usable like auth-source at emacs.

Feature

  • "Pass" style data get / get_startup (and other variant) support.
  • ctrlp.vim plugin : selection support.
    • <C-x> : only copy to register
    • <CR> : put before cursor, 'P'
    • <C-v> : put after cursor, 'p'
  • vim-clap plugin : selection support.
    • only work put like 'gP'.
  • Limited support OTP(HOTP).

Require

  • gpg
    • agent configuired as loopback enable
  • password-store like saved data
  • ctrlp.vim plugin
    • if use selection feature.
  • vim-clap plugin
    • if use selection feature.

Installation

dein#add('tsuyoshicho/vim-pass')
if dein#tap('ctrlp') && dein#tap('vim-pass')
  let g:ctrlp_extensions = get(g:, 'ctrlp_extensions', [])
        \ + ['pass']
endif

or

[[plugins]]
repo = 'tsuyoshicho/vim-pass'
depends = ['ctrlp.vim','vim-clap']
hook_add = '''
  let g:ctrlp_extensions = get(g:, 'ctrlp_extensions', [])
        \ + ['pass']
'''

Usage

" in vimrc
" configured at end of vim startup
call pass#get_startup('g:test_gh_token','Develop/Github')
call pass#get_startup('g:test_gh_username','Develop/Github','username')

function! test() abort
  let password = pass#get('Service/foobar')
  " ...
endfunction
# in plugin setting(dein's toml)
[[plugins]]
repo = 'tsuyoshicho/vim-pass'

[[plugins]] # https://pixe.la/
repo = 'mattn/vim-pixela'
depends = ['open-browser.vim','vim-pass']
hook_add = '''
  " let g:pixela_username = 'user'
  " let g:pixela_token    = 'token'

  call pass#get_startup('g:pixela_username','Develop/Pixela','username')
  " VimPixela work OK
  call pass#get_startup('g:pixela_token','Develop/Pixela')
  " startup-time countup do not correct work.
  " It work or does not work depending on the processing order of events
'''

[[plugins]]
repo = 'tpope/vim-rhubarb'
depends = ['vim-fugitive','vim-pass']
# on_if= 'executable("hub")'
hook_add = '''
  call pass#get_startup('g:RHUBARB_TOKEN','Develop/Github')
'''

[[plugins]]
repo = 'kyoh86/vim-docbase'
depends = ['vim-pass']
hook_add = '''
  let g:docbase = []
  call pass#get_startup_funcall(
        \ { v ->
        \ add(g:docbase,
        \   {
        \     'domain': 'example1',
        \     'token' : v
        \   }
        \  )
        \ },
        \ 'Develop/DocBase1'
        \)
  call pass#get_startup_funcall(
        \ { v ->
        \ add(g:docbase,
        \   {
        \     'domain': 'example2',
        \     'token' : v
        \   }
        \  )
        \ },
        \ 'Develop/DocBase2'
        \)
'''

[[plugins]] # Slack
repo = 'mizukmb/slackstatus.vim'
depends = ['webapi-vim','vim-pass']
hook_add = '''
  " let g:slackstatus_token = '<YOUR_SLACK_TOKEN>'
  " my hoge
  call pass#get_startup('g:slackstatus_token','Message/Slack/myhoge.legacy')
  " vim-jp
  " call pass#get_startup('g:slackstatus_token','Message/Slack/vim-jp.legacy')
  "
  function! s:slack_list(A,L,P) abort
    let slacklist = ['myhoge','vim-jp']
    return slacklist
  endfunction

  function s:slackstatus_change_token(team) abort
    let path = 'Message/Slack/' . a:team . '.legacy'
    let g:slackstatus_token = pass#get(path)
  endfunction

  command! -nargs=1 -complete=customlist,<SID>slack_list SlackStatusChange :call <SID>slackstatus_change_token(<f-args>)
'''

[[plugins]] # Mastodon
repo = 'mattn/vim-mastodon'
depends = ['webapi-vim','vim-pass']
hook_add = '''
  " mstdn.jp
  " let g:mastodon_host = 'mstdn.jp'
  " call pass#get_startup('g:mastodon_access_token','Message/Mastodon/mstdn.jp')

  function! s:mastodon_completion(A,L,P) abort
    let host_list = ['mstdn.jp']
    return join(host_list,"\n")
  endfunction

  function s:mastodon_change_hosttoken(host) abort
    let path = 'Message/Mastodon/' . a:host
    let g:mastodon_host = a:host
    let g:mastodon_access_token = pass#get(path)
  endfunction

  command! -nargs=1 -complete=custom,<SID>mastodon_completion MastodonHostChange :call <SID>mastodon_change_hosttoken(<f-args>)
'''

limitation

  • Currently support API:get(default password/entry select) only
  • Entry select require exact match
  • When plugin's variable configure at load/starup time,sometimes it works not correctly like above Pixela startup-time countup
  • some environment, need g:pass_use_agent set as 0 manually (ssh connect cli and non-X11 are automatic set to 0).

vim-pass's People

Contributors

renovate[bot] avatar tsuyoshicho avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

vim-pass's Issues

Weekly Digest (29 September, 2019 - 6 October, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week 1 issue was created.
It is still open.

OPEN ISSUES

๐Ÿ’š #43 feat: OTP ctrlp entry, by tsuyoshicho


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (9 June, 2019 - 16 June, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week 3 issues were created.
Of these, 3 issues have been closed and 0 issues are still open.

CLOSED ISSUES

โค๏ธ #36 fix: replace Process.exec result output split to content, by tsuyoshicho
โค๏ธ #35 fix: PassGet and others argument count error, by tsuyoshicho
โค๏ธ #34 fix: README update, by tsuyoshicho

NOISY ISSUE

๐Ÿ”ˆ #36 fix: replace Process.exec result output split to content, by tsuyoshicho
It received 1 comments.


PULL REQUESTS

Last week, 3 pull requests were created, updated or merged.

MERGED PULL REQUEST

Last week, 3 pull requests were merged.
๐Ÿ’œ #35 fix: PassGet and others argument count error, by tsuyoshicho
๐Ÿ’œ #34 fix: README update, by tsuyoshicho
๐Ÿ’œ #27 feat: update: HMAC/OTP, by tsuyoshicho


COMMITS

Last week there were 14 commits.
๐Ÿ› ๏ธ Merge branch 'develop' by tsuyoshicho
๐Ÿ› ๏ธ README no use badge comment-out move by tsuyoshicho
๐Ÿ› ๏ธ document cleanup by tsuyoshicho
๐Ÿ› ๏ธ Merge branch 'develop' by tsuyoshicho
๐Ÿ› ๏ธ Fix #36 String.line replace result.content data by tsuyoshicho
๐Ÿ› ๏ธ Merge pull request #35 from tsuyoshicho/fix/funcargs-count fix: PassGet and others argument count error by tsuyoshicho
๐Ÿ› ๏ธ Fix argment require by tsuyoshicho
๐Ÿ› ๏ธ Fix Base32 normal RFC rule by tsuyoshicho
๐Ÿ› ๏ธ Merge pull request #34 from tsuyoshicho/fix/readmefix-20190609 fix: README update by tsuyoshicho
๐Ÿ› ๏ธ README update 20190609 by tsuyoshicho
๐Ÿ› ๏ธ Merge pull request #27 from tsuyoshicho/vital-update feat: update: HMAC/OTP by tsuyoshicho
๐Ÿ› ๏ธ Merge branch 'develop' into vital-update by tsuyoshicho
๐Ÿ› ๏ธ fix: vararg to char support : otp direct define renew by tsuyoshicho
๐Ÿ› ๏ธ Update vital module at 20190609 by tsuyoshicho


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค tsuyoshicho


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (16 June, 2019 - 23 June, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were 2 commits.
๐Ÿ› ๏ธ Merge branch 'develop' by tsuyoshicho
๐Ÿ› ๏ธ help modeline and desc. update by tsuyoshicho


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค tsuyoshicho


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (19 January, 2020 - 26 January, 2020)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week 1 issue was created.
It is closed now.

CLOSED ISSUES

โค๏ธ #66 fix: ctrlp depend plugin load, by tsuyoshicho


PULL REQUESTS

Last week, 1 pull request was created, updated or merged.

MERGED PULL REQUEST

Last week, 1 pull request was merged.
๐Ÿ’œ #66 fix: ctrlp depend plugin load, by tsuyoshicho


COMMITS

Last week there were 2 commits.
๐Ÿ› ๏ธ fix: ctrlp depend plugin load (#66) fix: ctrlp depend plugin load by tsuyoshicho
๐Ÿ› ๏ธ fix ctrlp depend by tsuyoshicho


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค tsuyoshicho


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (26 January, 2020 - 2 February, 2020)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (20 January, 2020 - 27 January, 2020)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week 1 issue was created.
It is closed now.

CLOSED ISSUES

โค๏ธ #66 fix: ctrlp depend plugin load, by tsuyoshicho


PULL REQUESTS

Last week, 1 pull request was created, updated or merged.

MERGED PULL REQUEST

Last week, 1 pull request was merged.
๐Ÿ’œ #66 fix: ctrlp depend plugin load, by tsuyoshicho


COMMITS

Last week there were 2 commits.
๐Ÿ› ๏ธ fix: ctrlp depend plugin load (#66) fix: ctrlp depend plugin load by tsuyoshicho
๐Ÿ› ๏ธ fix ctrlp depend by tsuyoshicho


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค tsuyoshicho


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (2 June, 2019 - 9 June, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week 3 issues were created.
Of these, 2 issues have been closed and 1 issues are still open.

OPEN ISSUES

๐Ÿ’š #32 feat: help update, by tsuyoshicho

CLOSED ISSUES

โค๏ธ #31 fix: vararg use a:1, by tsuyoshicho
โค๏ธ #29 feat: use glob2regpat, by tsuyoshicho

NOISY ISSUE

๐Ÿ”ˆ #29 feat: use glob2regpat, by tsuyoshicho
It received 1 comments.


PULL REQUESTS

Last week, 1 pull request was created, updated or merged.

MERGED PULL REQUEST

Last week, 1 pull request was merged.
๐Ÿ’œ #25 fix: passphrase normal input verify, by tsuyoshicho


COMMITS

Last week there were 5 commits.
๐Ÿ› ๏ธ Merge pull request #25 from tsuyoshicho/feature/passphrase-check fix: passphrase normal input verify by tsuyoshicho
๐Ÿ› ๏ธ message fix by tsuyoshicho
๐Ÿ› ๏ธ check refine by tsuyoshicho
๐Ÿ› ๏ธ fix concat by tsuyoshicho
๐Ÿ› ๏ธ vim-pass: fix build-command by tsuyoshicho


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค tsuyoshicho


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (22 December, 2019 - 29 December, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week 2 issues were created.
Of these, 2 issues have been closed and 0 issues are still open.

CLOSED ISSUES

โค๏ธ #61 fix: workflow fix, by tsuyoshicho
โค๏ธ #60 Actions version lock, by tsuyoshicho

NOISY ISSUE

๐Ÿ”ˆ #60 Actions version lock, by tsuyoshicho
It received 1 comments.


PULL REQUESTS

Last week, 1 pull request was created, updated or merged.

MERGED PULL REQUEST

Last week, 1 pull request was merged.
๐Ÿ’œ #61 fix: workflow fix, by tsuyoshicho


COMMITS

Last week there were 2 commits.
๐Ÿ› ๏ธ fix: workflow fix (#61) fix: workflow fix by tsuyoshicho
๐Ÿ› ๏ธ fix small changes by tsuyoshicho


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค tsuyoshicho


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (17 November, 2019 - 24 November, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week 2 issues were created.
Of these, 1 issues have been closed and 1 issues are still open.

OPEN ISSUES

๐Ÿ’š #52 feat: CtrlP extend, by tsuyoshicho

CLOSED ISSUES

โค๏ธ #50 feat: add tag check, by tsuyoshicho


PULL REQUESTS

Last week, 1 pull request was created, updated or merged.

MERGED PULL REQUEST

Last week, 1 pull request was merged.
๐Ÿ’œ #50 feat: add tag check, by tsuyoshicho


COMMITS

Last week there were 6 commits.
๐Ÿ› ๏ธ Token setting update by tsuyoshicho
๐Ÿ› ๏ธ Merge pull request #50 from tsuyoshicho/feature/tagcheck feat: add tag check by tsuyoshicho
๐Ÿ› ๏ธ tagcheck add by tsuyoshicho
๐Ÿ› ๏ธ re-run CI by tsuyoshicho
๐Ÿ› ๏ธ support access token by tsuyoshicho
๐Ÿ› ๏ธ re-run CI by tsuyoshicho


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค tsuyoshicho


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (8 December, 2019 - 15 December, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week 1 issue was created.
It is closed now.

CLOSED ISSUES

โค๏ธ #57 feat: vim-clap add support, by tsuyoshicho


PULL REQUESTS

Last week, 1 pull request was created, updated or merged.

MERGED PULL REQUEST

Last week, 1 pull request was merged.
๐Ÿ’œ #57 feat: vim-clap add support, by tsuyoshicho


COMMITS

Last week there were 6 commits.
๐Ÿ› ๏ธ Update help : clap path in main help by tsuyoshicho
๐Ÿ› ๏ธ feat: vim-clap add support (#57) feat: vim-clap add support by tsuyoshicho
๐Ÿ› ๏ธ fix ctrlp-pass.jax small miss by tsuyoshicho
๐Ÿ› ๏ธ add clap support help by tsuyoshicho
๐Ÿ› ๏ธ clap and ctrlp readme update by tsuyoshicho
๐Ÿ› ๏ธ Add clap provider first code by tsuyoshicho


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค tsuyoshicho


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (19 May, 2019 - 26 May, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:

ISSUES

This week, no issues have been created or closed.

PULL REQUESTS

This week, no pull requests has been proposed by the users.

CONTRIBUTORS

This week, no user has contributed to this repository.

STARGAZERS

This week, no user has starred this repository.

COMMITS

This week, there have been no commits.

RELEASES

This week, no releases were published.

That's all for this week, please watch ๐Ÿ‘€ and star โญ tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

Weekly Digest (10 November, 2019 - 17 November, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:

ISSUES

This week 1 issue is closed.

CLOSED ISSUE

โค๏ธ #50 feat: add tag check, by tsuyoshicho

PULL REQUESTS

CONTRIBUTORS

This week, tsuyoshicho has contributed in the repository.

STARGAZERS

This week, no user has starred this repository.

COMMITS

This week, there have been 9 commits in the repository.
These are:
๐Ÿ› ๏ธ [Merge pull request #50 from tsuyoshicho/feature/tagcheck

feat: add tag check](92a1f9f) by tsuyoshicho
๐Ÿ› ๏ธ tagcheck add by tsuyoshicho
๐Ÿ› ๏ธ re-run CI by tsuyoshicho
๐Ÿ› ๏ธ support access token by tsuyoshicho
๐Ÿ› ๏ธ re-run CI by tsuyoshicho
๐Ÿ› ๏ธ re-run CI by tsuyoshicho
๐Ÿ› ๏ธ Fix typo by tsuyoshicho
๐Ÿ› ๏ธ re-run CI by tsuyoshicho
๐Ÿ› ๏ธ re-run CI by tsuyoshicho

RELEASES

This week, no releases were published.

That's all for this week, please watch ๐Ÿ‘€ and star โญ tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

Weekly Digest (6 October, 2019 - 13 October, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

feat: CtrlP extend

  • clipboard mode extend (P,p replace?)
  • Register support extend (setting)

Weekly Digest (5 January, 2020 - 12 January, 2020)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (15 December, 2019 - 22 December, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (3 November, 2019 - 10 November, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were 3 commits.
๐Ÿ› ๏ธ re-run CI by tsuyoshicho
๐Ÿ› ๏ธ workflow rename by tsuyoshicho
๐Ÿ› ๏ธ re-run CI by tsuyoshicho


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค tsuyoshicho


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (4 April, 2019 - 11 April, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week 3 issues were created.
Of these, 1 issues have been closed and 2 issues are still open.

OPEN ISSUES

๐Ÿ’š #15 fix '' == x change to empty, by tsuyoshicho
๐Ÿ’š #14 feat: register support, by tsuyoshicho

CLOSED ISSUES

โค๏ธ #13 Document: help CtrlPPass duplex, by tsuyoshicho

NOISY ISSUE

๐Ÿ”ˆ #13 Document: help CtrlPPass duplex, by tsuyoshicho
It received 2 comments.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were 4 commits.
๐Ÿ› ๏ธ fix miss mark by tsuyoshicho
๐Ÿ› ๏ธ fix split help by tsuyoshicho
๐Ÿ› ๏ธ initial copy from pass.* to ctrlp-pass.* by tsuyoshicho
๐Ÿ› ๏ธ brushup inner func name by tsuyoshicho


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค tsuyoshicho


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (12 January, 2020 - 19 January, 2020)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Error: vim in windows cli startup error

like git commit time

ๆ—ฅๆœฌ่ชžใƒกใƒƒใ‚ปใƒผใ‚ธ็ฟป่จณ/็›ฃไฟฎ: ๆ‘ๅฒก ๅคช้ƒŽ <[email protected]>
"<hoge>.git/COMMIT_EDITMSG" [unix] 33L, 934C
function pass#resolve_startup[9]..<SNR>4__resolve_startup ใฎๅ‡ฆ็†ไธญใซใ‚จใƒฉใƒผใŒๆคœๅ‡บใ•ใ‚Œใพใ—ใŸ:
่กŒ    5:
E121: ๆœชๅฎš็พฉใฎๅค‰ๆ•ฐใงใ™: d
function pass#resolve_startup[9]..<SNR>4__resolve_startup ใฎๅ‡ฆ็†ไธญใซใ‚จใƒฉใƒผใŒๆคœๅ‡บใ•ใ‚Œใพใ—ใŸ:
่กŒ    5:
E121: ๆœชๅฎš็พฉใฎๅค‰ๆ•ฐใงใ™: d
function pass#resolve_startup[9]..<SNR>4__resolve_startup ใฎๅ‡ฆ็†ไธญใซใ‚จใƒฉใƒผใŒๆคœๅ‡บใ•ใ‚Œใพใ—ใŸ:
่กŒ    5:
E121: ๆœชๅฎš็พฉใฎๅค‰ๆ•ฐใงใ™: d
function pass#resolve_startup[9]..<SNR>4__resolve_startup ใฎๅ‡ฆ็†ไธญใซใ‚จใƒฉใƒผใŒๆคœๅ‡บใ•ใ‚Œใพใ—ใŸ:
่กŒ    5:
E121: ๆœชๅฎš็พฉใฎๅค‰ๆ•ฐใงใ™: d
21 ่กŒ ๅ‰Š้™คใ—ใพใ—ใŸ
".git/COMMIT_EDITMSG" [unix] 11L, 272C ๆ›ธ่พผใฟ

Weekly Digest (2 February, 2020 - 9 February, 2020)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week 2 issues were created.
Of these, 2 issues have been closed and 0 issues are still open.

CLOSED ISSUES

โค๏ธ #71 fix: autoload reload check, by tsuyoshicho
โค๏ธ #70 Fix autoload guard code, by tsuyoshicho


PULL REQUESTS

Last week, 1 pull request was created, updated or merged.

MERGED PULL REQUEST

Last week, 1 pull request was merged.
๐Ÿ’œ #71 fix: autoload reload check, by tsuyoshicho


COMMITS

Last week there were 2 commits.
๐Ÿ› ๏ธ Merge pull request #71 from tsuyoshicho/fix/autoload fix: autoload reload check by tsuyoshicho
๐Ÿ› ๏ธ fix autoload reload check by tsuyoshicho


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค tsuyoshicho


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (26 May, 2019 - 2 June, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, 1 pull request was created, updated or merged.

MERGED PULL REQUEST

Last week, 1 pull request was merged.
๐Ÿ’œ #26 fix: function arg keyword change to list -> str, by tsuyoshicho


COMMITS

Last week there were 2 commits.
๐Ÿ› ๏ธ Merge pull request #26 from tsuyoshicho/fix/argcheck fix: function arg keyword change to list -> str by tsuyoshicho
๐Ÿ› ๏ธ fix arg list to str by tsuyoshicho


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค tsuyoshicho


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (11 August, 2019 - 18 August, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

other products: vital.vim HMAC/OTP documentation,testcase

vital.vimใซไธ€ๆ—ฆๅ…ฅใ‚Œใฆใ„ใ‚‹HMAC/OTPใฏใƒ‰ใ‚ญใƒฅใƒกใƒณใƒˆใจใƒ†ใ‚นใƒˆใ‚ฑใƒผใ‚นใŒใชใ„ใฎใงใ€ๅๅˆ†ใซ่ฃœๅผทใ—ใฆใ‹ใ‚‰contrib PRใ™ใ‚‹

Weekly Digest (15 September, 2019 - 22 September, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, 1 pull request was created, updated or merged.

MERGED PULL REQUEST

Last week, 1 pull request was merged.
๐Ÿ’œ #40 bug: Windows entry selection fail, by tsuyoshicho


COMMITS

Last week there were 2 commits.
๐Ÿ› ๏ธ Merge pull request #40 from tsuyoshicho/fix/windows-entry bug: Windows entry selection fail by tsuyoshicho
๐Ÿ› ๏ธ fix entry listup process windows and multi backslash problem by tsuyoshicho


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค tsuyoshicho


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (24 November, 2019 - 1 December, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (29 December, 2019 - 5 January, 2020)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (22 September, 2019 - 29 September, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

feat: register manage

ๅˆฅๅฃใฎๆƒ…ๅ ฑใ‚’ใ‚‚ใจใซใ€็ฎก็†้–ขๆ•ฐใ‚’ๆ•ดๅ‚™ใ™ใ‚‹

https://qiita.com/miyanokomiya/items/03d19bca87d4b2f176c4

ใ‚ฏใƒชใ‚ข่‡ชไฝ“ใฏ''ใ‚’ๆธกใ›ใฐใ‚ˆใ„

ๅˆฅๅฃใจใ—ใฆใ€ๅ€คใ‚’ๆธกใ—ใฆใ€ใƒฌใ‚ธใ‚นใ‚ฟใซใฎใ“ใฃใฆใŸใ‚‰ๆถˆใ™(''ใซใ™ใ‚‹)ใ‚‚็”จๆ„ใ—ใŸใ„

vim-passใจใ—ใฆใฏใ€@0ใซใฏๅ…ฅใ‚Œใชใ„ใปใ†ใŒใ‚ˆใ•ใใ†

Weekly Digest (1 December, 2019 - 8 December, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week 1 issue was created.
It is closed now.

CLOSED ISSUES

โค๏ธ #55 fix: ctrlp_ext_var set and extend use extend(), by tsuyoshicho


PULL REQUESTS

Last week, 1 pull request was created, updated or merged.

MERGED PULL REQUEST

Last week, 1 pull request was merged.
๐Ÿ’œ #55 fix: ctrlp_ext_var set and extend use extend(), by tsuyoshicho


COMMITS

Last week there were 3 commits.
๐Ÿ› ๏ธ fix miss at ctrlp_ext_vars by tsuyoshicho
๐Ÿ› ๏ธ fix: ctrlp_ext_var set and extend use extend() (#55) fix: ctrlp_ext_var set and extend use extend() by tsuyoshicho
๐Ÿ› ๏ธ fix ctrlp ext_var add method to extend() use by tsuyoshicho


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค tsuyoshicho


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (13 October, 2019 - 20 October, 2019)

Here's the Weekly Digest for tsuyoshicho/vim-pass:


ISSUES

Last week 1 issue was created.
It is still open.

OPEN ISSUES

๐Ÿ’š #46 bug: target encryped file's key expiration date passed warning message mixed, by tsuyoshicho


PULL REQUESTS

Last week, 1 pull request was created, updated or merged.

MERGED PULL REQUEST

Last week, 1 pull request was merged.
๐Ÿ’œ #43 feat: OTP ctrlp entry, by tsuyoshicho


COMMITS

Last week there were 6 commits.
๐Ÿ› ๏ธ fix readme miss by tsuyoshicho
๐Ÿ› ๏ธ Merge pull request #43 from tsuyoshicho/feature/ctrlp-entity feat: OTP ctrlp entry by tsuyoshicho
๐Ÿ› ๏ธ Update document part2 by tsuyoshicho
๐Ÿ› ๏ธ Update document by tsuyoshicho
๐Ÿ› ๏ธ fix treat register by tsuyoshicho
๐Ÿ› ๏ธ CtrlP support C-v,C-x by tsuyoshicho


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค tsuyoshicho


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository tsuyoshicho/vim-pass to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.