Closed Cyberlane closed 5 years ago
@Cyberlane do you installed rg
, leader t b
is wrong .leader t n
is correct. i will fixed doc. gc
should use text object https://github.com/tyru/caw.vim.
There may be too many modifications, which caused me to miss some of the keys. Sorry, thank you very much for submitting the issue.
any update?
close
Sorry, I've been away for a few days but I will be able to check on this tomorrow.
ok i reopen this issue,i changed the structure . use yaml to mange plugins not toml. and u add local folder which you can mange your vim plugins and vim setttings.
I've updated, and now testing it out again.
The search works now, I did not have ripgrep, I made a wrong assumption that you were using fd
, which is what I was using with fzf
previously.
<Leader> + tb
works fine now too.
gc
does not comment
gcc
does not uncomment
gcgcc
will comment a line, but will not uncomment it. Maybe I am misunderstanding something on this one?
@Cyberlane gc should use textobject gci
etc.. gcc
will comment a line and type gcc
again will uncomment line. you should know vim textobkect
Type "gci" (toggle: "gcc", uncomment: "gcui")
before:
" <- inserted here"
after:
" # <- inserted here"
Type "gcI" (uncomment: "gcuI")
before:
" inserted the first column"
after:
"# inserted the first column"
Type "gca" (uncomment: "gcua")
before:
"inserted after this"
after:
"inserted after this # "
Type "gcw" (uncomment: "gcuw")
before:
" wrap!"
after:
" /* wrap! */"
Type "gcb"
before:
" box!"
after:
" /********/"
" /* box! */"
" /********/"
Type "gco"
before:
" func1();"
after:
" func1()"
" // " (now cursor is at the end and entered insert-mode)
Type "gcO"
before:
" func1();"
after:
" // " (now cursor is at the end and entered insert-mode)
" func1();"
you should check this doc https://github.com/tyru/caw.vim/blob/master/doc/caw.txt
@taigacute - I've been using VIM for 6 years year, and have never really read any books or tutorials, mostly learned by doing, and tweaking things by having it as my main IDE at work and home. So clearly this is one of the things I have missed out on, I'll read the doc you linked.
Thanks for your patience, and for the awesome config!
@Cyberlane i have fixed some bug, please update. you can use local
to mange your plugins and vim settings.
@Cyberlane - done!
Will you eventually allow for theme colorscheme customizations? I really like the config you have, but I much preferred the colorscheme I had before :)
you can use your colorscheme .only to change https://github.com/taigacute/ThinkVim/blob/master/core/themes/theme.vim#L22 or you can set it in local_settings.vim
Fantastic, thank you!
no thanks. by the way . do you got error when you use ;+m
Yeah, when I use ;+m
I get [denite] denite failed to load. Try the :UpdateRemotePlugins command and restart Neovim. See also :checkhealth.
Do I need to run update, or is that done each time I open vim (much like the install) ?
yes you should run :UpdateRemotePlugins
for defx and denite ,cause they call the python rpc of neovim. only run once this command .
I ran the update, closed and re-opened VIM and it still isn't working.
How do you make those gifs showing the key presses? I could make one of those to try show what I am doing - maybe I am doing something incorrectly.
@Cyberlane can you leader +e
to call defx, then ;+m
call denite. maybe you will got some error.then run command :UpdateRemotePlugins
if you see [defx.nvim,denite]
.its success.
i ask for Shougo that dein author .he said the call dein#init function will call dein#remote_plugins function. this function will register the plugin to rpc. but dont know why .i got the same info
I have done leader + e
and am on the defx, I pressed ;+m
and I got the same error.
I ran :UpdateRemotePlugins
and I got the following:
remote/host: python3 host registered plugins ['defx', 'denite']
remote/host: generated rplugin manifest: ~/.local/share/nvim/rplugin.vim
What should this do?
successed
Problems summary
A lot of the documented keybindings/shortcuts do not work
Environment Information
OS: MacOS 10.13.6 (17G7024)
neovim
:version
output::checkhealth
or:CheckHealth
result(neovim only):How to reproduce the problem from neovim startup (Required!)
gc
does nothing<Leader> + ff
opens a floating window, which lets me type but shows nothing else.<Leader> + tb
gives the errorSPC t b is undefined
Screenshot (if possible)