yehuohan
yehuohan
Awesome plugin! We all dislike to run terrible code, but there will still be some case like #204 and we have to restart (neo)vim instance. So I think it's great...
add dict support for motion target with simplified chinese text and traditional chinese text.
Example is listed following: - The origin code: ``` int flg_test; /* test flag */ ``` - After `cc`: ``` // int flg_test; [> test flg test flg
The main changes are listed following: - Change bookmark list as files bookmark. - Change workspace list to show all workspaces of all projects that had been added. 【 And...
Add `toggle_mark` command to toggle inputed mark at current line like what `kshenoy/vim-signature` (it uses `g:SignatureMap.Leader` to toggle inputed mark) does.
Support @ cmdtype completion for input() function. With following setup, cmp-cmdline can also provide the completion content passed into `input()` function. ```lua cmp.setup.cmdline({':', '@'}, { mapping = cmp_mappings, sources =...
- Add windows path (works for cmdline too): `x:\foo\bar`, `x:/foo\bar` - Add brace-env path (not for cmdline, convenient for bash coding): `${HOME}/`, `${HOME}\` - Add windows env path (not for...
Add configuration `excluded_filetypes` to skip specified windows and buffers. For example, we can setup hop.nvim with ```lua require('hop').setup{ excluded_filetypes = { 'scrollbar' } } ``` to avoid crash when running...
I have created a instantRst.bat file for this plugin InstantRst to call InstantRst python script: ```bat @"c:\myapps\python36\python.exe" "c:\myapps\python36\Scripts\instantRst" %* ``` but, there are still problem to preview rst file.
This PR allows hop to jump to anywhere you want with `virtualedit` used, even there is a blank cell like the picture showed below. So any hop-regex/extension can supports `virtualedit`...