Full featured starter LazyVim based Neovim configuration by Justin Angeles. Justin has a YouTube video describing this config
- Install and initialize:
lazyman -x JustinOhMy
- Configuration category: Starter
- Base configuration: LazyVim
- Plugin manager: Lazy
- Installation location:
~/.config/nvim-JustinOhMy
Git repository
https://github.com/justinsgithub/Oh-My-LazyVim
Website
https://www.lazyvim.org
YouTube channel
https://www.youtube.com/@justindevelops
Lazy managed plugins
JustinOhMy Keymaps
Normal mode keymaps
Description | convenience func PythonHelp |
---|
Left hand side | jh |
Right hand side | <Cmd>:call PythonHelp()<CR> |
Description | convenience func DFColumns |
---|
Left hand side | jc |
Right hand side | <Cmd>:call DFColumns()<CR> |
Description | Opens a new output window and executes the command specified in g:jukit_shell_cmd |
---|
Left hand side | jos |
Right hand side | <Cmd>:call jukit#splits#output()<CR> |
Description | Opens a new output window without executing any command |
---|
Left hand side | jts |
Right hand side | <Cmd>:call jukit#splits#term()<CR> |
Description | Opens a new output-history window, where saved ipython outputs are displayed |
---|
Left hand side | jhs |
Right hand side | <Cmd>:call jukit#splits#history()<CR> |
Description | Shortcut for opening output terminal and output-history |
---|
Left hand side | johs |
Right hand side | <Cmd>:call jukit#splits#output_and_history()<CR> |
Description | Close output-history window |
---|
Left hand side | jhd |
Right hand side | <Cmd>:call jukit#splits#close_history()<CR> |
Description | Close output window |
---|
Left hand side | jod |
Right hand side | <Cmd>:call jukit#splits#close_output_split()<CR> |
Description | Close both windows. Argument: Whether or not to ask you to confirm before closing. |
---|
Left hand side | johd |
Right hand side | <Cmd>:call jukit#splits#close_output_and_history(1)<CR> |
Description | Show output of current cell (determined by current cursor position) in output-history window. Argument: Whether or not to reload outputs if cell id of outputs to display is the same as the last cell id for which outputs were displayed |
---|
Left hand side | jso |
Right hand side | <Cmd>:call jukit#splits#show_last_cell_output(1)<CR> |
Description | Scroll down in output-history window. Argument: whether to scroll down (1) or up (0) |
---|
Left hand side | jj |
Right hand side | <Cmd>:call jukit#splits#out_hist_scroll(1)<CR> |
Description | Scroll up in output-history window. Argument: whether to scroll down (1) or up (0) |
---|
Left hand side | jk |
Right hand side | <Cmd>:call jukit#splits#out_hist_scroll(0)<CR> |
Description | Create/delete autocmd for displaying saved output on CursorHold. Also, see explanation for g:jukit_auto_output_hist |
---|
Left hand side | jah |
Right hand side | <Cmd>:call jukit#splits#toggle_auto_hist()<CR> |
Description | Send code within the current cell to output split (also saves the output if ipython is used and g:jukit_save_output==1 ). Argument: if 1, will move the cursor to the next cell below after sending the code to the split, otherwise cursor position stays the same. |
---|
Left hand side | j |
Right hand side | <Cmd>:call jukit#send#section(0)<CR> |
Description | |
---|
Left hand side | jsl |
Right hand side | <Cmd>:call jukit#layouts#set_layout()<CR> |
Description | Send visually selected code to output split |
---|
Left hand side | jss |
Right hand side | <Cmd>:<C-U>call jukit#send#selection()<CR> |
Description | Execute all cells until the current cell |
---|
Left hand side | jcc |
Right hand side | <Cmd>:call jukit#send#until_current_section()<CR> |
Description | Execute all cells |
---|
Left hand side | jall |
Right hand side | <Cmd>:call jukit#send#all()<CR> |
Description | Create new code cell below. Argument: Whether to create code cell (0) or markdown cell (1) |
---|
Left hand side | jco |
Right hand side | <Cmd>:call jukit#cells#create_below(0)<CR> |
Description | Create new code cell above. Argument: Whether to create code cell (0) or markdown cell (1) |
---|
Left hand side | jcO |
Right hand side | <Cmd>:call jukit#cells#create_above(0)<CR> |
Description | Create new textcell below. Argument: Whether to create code cell (0) or markdown cell (1) |
---|
Left hand side | jct |
Right hand side | <Cmd>:call jukit#cells#create_below(1)<CR> |
Description | Create new textcell above. Argument: Whether to create code cell (0) or markdown cell (1) |
---|
Left hand side | jcT |
Right hand side | <Cmd>:call jukit#cells#create_above(1)<CR> |
Description | Delete current cell |
---|
Left hand side | jcd |
Right hand side | <Cmd>:call jukit#cells#delete()<CR> |
Description | Split current cell (saved output will then be assigned to the resulting cell above) |
---|
Left hand side | jcs |
Right hand side | <Cmd>:call jukit#cells#split()<CR> |
Description | Merge current cell with the cell above |
---|
Left hand side | jcM |
Right hand side | <Cmd>:call jukit#cells#merge_above()<CR> |
Description | Merge current cell with the cell below |
---|
Left hand side | jcm |
Right hand side | <Cmd>:call jukit#cells#merge_below()<CR> |
Description | Move current cell up |
---|
Left hand side | jck |
Right hand side | <Cmd>:call jukit#cells#move_up()<CR> |
Description | Move current cell down |
---|
Left hand side | jcj |
Right hand side | <Cmd>:call jukit#cells#move_down()<CR> |
Description | Jump to the next cell below |
---|
Left hand side | jJ |
Right hand side | <Cmd>:call jukit#cells#jump_to_next_cell()<CR> |
Description | Jump to the previous cell above |
---|
Left hand side | jK |
Right hand side | <Cmd>:call jukit#cells#jump_to_previous_cell()<CR> |
Description | Delete saved output of current cell. Argument: Whether to delete all saved outputs (1) or only saved output of current cell (0) |
---|
Left hand side | jddo |
Right hand side | <Cmd>:call jukit#cells#delete_outputs(0)<CR> |
Description | Delete saved outputs of all cells. Argument: Whether to delete all saved outputs (1) or only saved output of current cell (0) |
---|
Left hand side | jdda |
Right hand side | <Cmd>:call jukit#cells#delete_outputs(1)<CR> |
Description | Convert from ipynb to py or vice versa. Argument: Optional. If an argument is specified, then its value is used to open the resulting ipynb file after converting script. |
---|
Left hand side | jnp |
Right hand side | <Cmd>:call jukit#convert#notebook_convert('jupyter-notebook')<CR> |
Description | Convert file to html (including all saved outputs) and open it using the command specified in g:jukit_html_viewer'. If g:jukit_html_viewer is not defined, then will default to g:jukit_html_viewer=’xdg-open’`. Arguments: 1.: Whether to rerun all cells when converting 2.: Whether to open it after converting 3.: filetype to convert to |
---|
Left hand side | jht |
Right hand side | <Cmd>:call jukit#convert#save_nb_to_file(0,1,'html')<CR> |
Description | same as above, but will (re-)run all cells when converting to html |
---|
Left hand side | jrht |
Right hand side | <Cmd>:call jukit#convert#save_nb_to_file(1,1,'html')<CR> |
Description | |
---|
Left hand side | jpd |
Right hand side | <Cmd>:call jukit#convert#save_nb_to_file(0,1,'pdf')<CR> |
Description | |
---|
Left hand side | jrpd |
Right hand side | <Cmd>:call jukit#convert#save_nb_to_file(1,1,'pdf')<CR> |
Description | set position and dimension of überzug window |
---|
Left hand side | pos |
Right hand side | <Cmd>:call jukit#ueberzug#set_default_pos()<CR> |
Description | Projects |
---|
Left hand side | fp |
Right hand side | <Cmd>Telescope projects<CR> |
Description | Jump to Mark |
---|
Left hand side | sm |
Right hand side | <Cmd>Telescope marks<CR> |
Description | Search Highlight Groups |
---|
Left hand side | sH |
Right hand side | <Cmd>Telescope highlights<CR> |
Description | Help Pages |
---|
Left hand side | sh |
Right hand side | <Cmd>Telescope help_tags<CR> |
Description | Grep (cwd) |
---|
Left hand side | sG |
Right hand side | |
Description | Grep (root dir) |
---|
Left hand side | sg |
Right hand side | |
Description | Workspace diagnostics |
---|
Left hand side | sD |
Right hand side | <Cmd>Telescope diagnostics<CR> |
Description | Document diagnostics |
---|
Left hand side | sd |
Right hand side | <Cmd>Telescope diagnostics bufnr=0<CR> |
Description | Commands |
---|
Left hand side | sC |
Right hand side | <Cmd>Telescope commands<CR> |
Description | Command History |
---|
Left hand side | sc |
Right hand side | <Cmd>Telescope command_history<CR> |
Description | Buffer |
---|
Left hand side | sb |
Right hand side | <Cmd>Telescope current_buffer_fuzzy_find<CR> |
Description | Auto Commands |
---|
Left hand side | sa |
Right hand side | <Cmd>Telescope autocommands<CR> |
Description | Registers |
---|
Left hand side | s" |
Right hand side | <Cmd>Telescope registers<CR> |
Description | status |
---|
Left hand side | gs |
Right hand side | <Cmd>Telescope git_status<CR> |
Description | commits |
---|
Left hand side | gc |
Right hand side | <Cmd>Telescope git_commits<CR> |
Description | Recent (cwd) |
---|
Left hand side | fR |
Right hand side | |
Description | Find Files (cwd) |
---|
Left hand side | fF |
Right hand side | |
Description | Find Files (root dir) |
---|
Left hand side | ff |
Right hand side | |
Description | Buffers |
---|
Left hand side | fb |
Right hand side | <Cmd>Telescope buffers<CR> |
Description | Recent |
---|
Left hand side | fr |
Right hand side | <Cmd>Telescope oldfiles<CR> |
Description | Man Pages |
---|
Left hand side | sM |
Right hand side | <Cmd>Telescope man_pages<CR> |
Description | Word (root dir) |
---|
Left hand side | sw |
Right hand side | |
Description | Options |
---|
Left hand side | so |
Right hand side | <Cmd>Telescope vim_options<CR> |
Description | Resume |
---|
Left hand side | sR |
Right hand side | <Cmd>Telescope resume<CR> |
Description | Key Maps |
---|
Left hand side | sk |
Right hand side | <Cmd>Telescope keymaps<CR> |
Description | Word (cwd) |
---|
Left hand side | fW |
Right hand side | |
Description | Word (root dir) |
---|
Left hand side | fw |
Right hand side | |
Description | All Buffers |
---|
Left hand side | fB |
Right hand side | <Cmd>Telescope buffers show_all_buffers=true<CR> |
Description | Text |
---|
Left hand side | ft |
Right hand side | |
Description | Find LazyVim Config |
---|
Left hand side | fC |
Right hand side | |
Description | Find Plugin File |
---|
Left hand side | fP |
Right hand side | |
Description | Command History |
---|
Left hand side | fc |
Right hand side | <Cmd>Telescope command_history<CR> |
Description | Goto Symbol (Workspace) |
---|
Left hand side | sS |
Right hand side | |
Description | Goto Symbol |
---|
Left hand side | ss |
Right hand side | |
Description | Colorscheme with preview |
---|
Left hand side | uC |
Right hand side | |
Description | Word (cwd) |
---|
Left hand side | sW |
Right hand side | |
Description | Dap UI |
---|
Left hand side | Du |
Right hand side | |
Description | Eval |
---|
Left hand side | De |
Right hand side | |
Description | Delete non-pinned buffers |
---|
Left hand side | bP |
Right hand side | |
Description | Toggle pin |
---|
Left hand side | bp |
Right hand side | |
Description | Bookmarks |
---|
Left hand side | <Tab>b |
Right hand side | |
Description | Don’t Save Current Session |
---|
Left hand side | Sd |
Right hand side | |
Description | Restore Last Session |
---|
Left hand side | Sl |
Right hand side | |
Description | Restore Session |
---|
Left hand side | Ss |
Right hand side | |
Description | Dismiss All |
---|
Left hand side | snd |
Right hand side | |
Description | Noice All |
---|
Left hand side | sna |
Right hand side | |
Description | Noice History |
---|
Left hand side | snh |
Right hand side | |
Description | Noice Last Message |
---|
Left hand side | snl |
Right hand side | |
Description | Adapter Lua Server |
---|
Left hand side | DaL |
Right hand side | |
Description | Adapter Lua |
---|
Left hand side | Dal |
Right hand side | |
Description | Replace in files (Spectre) |
---|
Left hand side | sr |
Right hand side | |
Description | Mason |
---|
Left hand side | cm |
Right hand side | |
Description | Symbols Outline |
---|
Left hand side | cs |
Right hand side | |
Description | Open Code Outline Window |
---|
Left hand side | a |
Right hand side | |
Description | Dismiss all Notifications |
---|
Left hand side | un |
Right hand side | |
Description | Explorer |
---|
Left hand side | e |
Right hand side | |
Description | Run Nearest |
---|
Left hand side | Tr |
Right hand side | |
Description | Run All Test Files |
---|
Left hand side | TT |
Right hand side | |
Description | Run File |
---|
Left hand side | Tt |
Right hand side | |
Description | Stop |
---|
Left hand side | TS |
Right hand side | |
Description | Toggle Output Panel |
---|
Left hand side | TO |
Right hand side | |
Description | Show Output |
---|
Left hand side | To |
Right hand side | |
Description | Toggle Summary |
---|
Left hand side | Ts |
Right hand side | |
Description | Close Buffer |
---|
Left hand side | bc |
Right hand side | |
Description | Close Buffer (Force) |
---|
Left hand side | bC |
Right hand side | |
Description | Todo |
---|
Left hand side | st |
Right hand side | |
Description | Todo/Fix/Fixme |
---|
Left hand side | sT |
Right hand side | |
Description | Todo/Fix/Fixme (Trouble) |
---|
Left hand side | dT |
Right hand side | |
Description | Todo (Trouble) |
---|
Left hand side | dt |
Right hand side | |
Description | Document Diagnostics (Trouble) |
---|
Left hand side | dx |
Right hand side | |
Description | Location List (Trouble) |
---|
Left hand side | dL |
Right hand side | |
Description | Quickfix List (Trouble) |
---|
Left hand side | dQ |
Right hand side | |
Description | Workspace Diagnostics (Trouble) |
---|
Left hand side | dX |
Right hand side | |
Description | Down |
---|
Left hand side | Dj |
Right hand side | |
Description | Step Into |
---|
Left hand side | Di |
Right hand side | |
Description | Go to line (no execute) |
---|
Left hand side | Dg |
Right hand side | |
Description | Run to Cursor |
---|
Left hand side | DC |
Right hand side | |
Description | Continue |
---|
Left hand side | Dc |
Right hand side | |
Description | Toggle Breakpoint |
---|
Left hand side | Db |
Right hand side | |
Description | Breakpoint Condition |
---|
Left hand side | DB |
Right hand side | |
Description | Debug Nearest |
---|
Left hand side | Td |
Right hand side | |
Description | Widgets |
---|
Left hand side | Dw |
Right hand side | |
Description | Terminate |
---|
Left hand side | Dt |
Right hand side | |
Description | Session |
---|
Left hand side | Ds |
Right hand side | |
Description | Toggle REPL |
---|
Left hand side | Dr |
Right hand side | |
Description | Pause |
---|
Left hand side | Dp |
Right hand side | |
Description | Step Over |
---|
Left hand side | DO |
Right hand side | |
Description | Step Out |
---|
Left hand side | Do |
Right hand side | |
Description | Run Last |
---|
Left hand side | Dl |
Right hand side | |
Description | Up |
---|
Left hand side | Dk |
Right hand side | |
Description | |
---|
Left hand side | % |
Right hand side | <Plug>(MatchitNormalForward) |
Description | Nvim builtin |
---|
Left hand side | & |
Right hand side | :&&<CR> |
Description | Flash Treesitter |
---|
Left hand side | S |
Right hand side | |
Description | Nvim builtin |
---|
Left hand side | Y |
Right hand side | y$ |
Description | |
---|
Left hand side | [% |
Right hand side | <Plug>(MatchitNormalMultiBackward) |
Description | Previous todo comment |
---|
Left hand side | [t |
Right hand side | |
Description | Previous trouble/quickfix item |
---|
Left hand side | [q |
Right hand side | |
Description | Prev Reference |
---|
Left hand side | [[ |
Right hand side | |
Description | Find left surrounding |
---|
Left hand side | \sF |
Right hand side | |
Description | Find right surrounding |
---|
Left hand side | \sf |
Right hand side | |
Description | Delete surrounding |
---|
Left hand side | \sd |
Right hand side | |
Description | Add surrounding |
---|
Left hand side | \sa |
Right hand side | |
Description | Update MiniSurround.config.n_lines |
---|
Left hand side | \sn |
Right hand side | |
Description | Replace surrounding |
---|
Left hand side | \sr |
Right hand side | |
Description | Highlight surrounding |
---|
Left hand side | \sh |
Right hand side | |
Description | Toggle TreeSJ |
---|
Left hand side | \j |
Right hand side | |
Description | Close Buffer |
---|
Left hand side | \c |
Right hand side | |
Description | |
---|
Left hand side | ]% |
Right hand side | <Plug>(MatchitNormalMultiForward) |
Description | Next todo comment |
---|
Left hand side | ]t |
Right hand side | |
Description | Next trouble/quickfix item |
---|
Left hand side | ]q |
Right hand side | |
Description | Next Reference |
---|
Left hand side | ]] |
Right hand side | |
Description | |
---|
Left hand side | gx |
Right hand side | <Plug>NetrwBrowseX |
Description | |
---|
Left hand side | g% |
Right hand side | <Plug>(MatchitNormalBackward) |
Description | |
---|
Left hand side | g<C-X> |
Right hand side | <Cmd>lua require"dial.command".select_augend_gnormal()<CR><Cmd>let &opfunc="dial#operator#decrement_gnormal"<CR>g@<Cmd>lua require("dial.command").textobj()<CR> |
Description | |
---|
Left hand side | g<C-A> |
Right hand side | <Cmd>lua require"dial.command".select_augend_gnormal()<CR><Cmd>let &opfunc="dial#operator#increment_gnormal"<CR>g@<Cmd>lua require("dial.command").textobj()<CR> |
Description | |
---|
Left hand side | g<Plug>(dial-decrement) |
Right hand side | <Cmd>lua require"dial.command".select_augend_gnormal()<CR><Cmd>let &opfunc="dial#operator#decrement_gnormal"<CR>g@<Cmd>lua require("dial.command").textobj()<CR> |
Description | |
---|
Left hand side | g<Plug>(dial-increment) |
Right hand side | <Cmd>lua require"dial.command".select_augend_gnormal()<CR><Cmd>let &opfunc="dial#operator#increment_gnormal"<CR>g@<Cmd>lua require("dial.command").textobj()<CR> |
Description | Flash |
---|
Left hand side | s |
Right hand side | |
Description | |
---|
Left hand side | <Plug>NetrwBrowseX |
Right hand side | :call netrw#BrowseX(netrw#GX(),netrw#CheckIfRemote(netrw#GX()))<CR> |
Description | |
---|
Left hand side | <Plug>(MatchitNormalMultiForward) |
Right hand side | :<C-U>call matchit#MultiMatch("W", "n")<CR> |
Description | |
---|
Left hand side | <Plug>(MatchitNormalMultiBackward) |
Right hand side | :<C-U>call matchit#MultiMatch("bW", "n")<CR> |
Description | |
---|
Left hand side | <Plug>(MatchitNormalBackward) |
Right hand side | :<C-U>call matchit#Match_wrapper('',0,'n')<CR> |
Description | |
---|
Left hand side | <Plug>(MatchitNormalForward) |
Right hand side | :<C-U>call matchit#Match_wrapper('',1,'n')<CR> |
Description | |
---|
Left hand side | <C-X> |
Right hand side | <Cmd>lua require"dial.command".select_augend_normal()<CR><Cmd>let &opfunc="dial#operator#decrement_normal"<CR>g@<Cmd>lua require("dial.command").textobj()<CR> |
Description | |
---|
Left hand side | <C-A> |
Right hand side | <Cmd>lua require"dial.command".select_augend_normal()<CR><Cmd>let &opfunc="dial#operator#increment_normal"<CR>g@<Cmd>lua require("dial.command").textobj()<CR> |
Description | |
---|
Left hand side | <Plug>(dial-decrement) |
Right hand side | <Cmd>lua require"dial.command".select_augend_normal()<CR><Cmd>let &opfunc="dial#operator#decrement_normal"<CR>g@<Cmd>lua require("dial.command").textobj()<CR> |
Description | |
---|
Left hand side | <Plug>(dial-increment) |
Right hand side | <Cmd>lua require"dial.command".select_augend_normal()<CR><Cmd>let &opfunc="dial#operator#increment_normal"<CR>g@<Cmd>lua require("dial.command").textobj()<CR> |
Description | Toggle Terminal |
---|
Left hand side | <C-Bslash> |
Right hand side | <Cmd>execute v:count . "ToggleTerm"<CR> |
Description | |
---|
Left hand side | <Plug>PlenaryTestFile |
Right hand side | :lua require('plenary.test_harness').test_directory(vim.fn.expand("%:p"))<CR> |
Description | Scroll backward |
---|
Left hand side | <C-B> |
Right hand side | |
Description | Scroll forward |
---|
Left hand side | <C-F> |
Right hand side | |
Description | Nvim builtin |
---|
Left hand side | <C-L> |
Right hand side | <Cmd>nohlsearch|diffupdate|normal! <C-L><CR> |
Visual mode keymaps
Description | Selection (cwd) |
---|
Left hand side | sW |
Right hand side | |
Description | Selection (root dir) |
---|
Left hand side | sw |
Right hand side | |
Description | Eval |
---|
Left hand side | De |
Right hand side | |
Description | Nvim builtin |
---|
Left hand side | # |
Right hand side | y?\V<C-R>"<CR> |
Description | |
---|
Left hand side | % |
Right hand side | <Plug>(MatchitVisualForward) |
Description | Nvim builtin |
---|
Left hand side | * |
Right hand side | y/\V<C-R>"<CR> |
Description | Treesitter Search |
---|
Left hand side | R |
Right hand side | |
Description | Flash Treesitter |
---|
Left hand side | S |
Right hand side | |
Description | |
---|
Left hand side | [% |
Right hand side | <Plug>(MatchitVisualMultiBackward) |
Description | Add surrounding |
---|
Left hand side | \sa |
Right hand side | |
Description | |
---|
Left hand side | ]% |
Right hand side | <Plug>(MatchitVisualMultiForward) |
Description | |
---|
Left hand side | a% |
Right hand side | <Plug>(MatchitVisualTextObject) |
Description | |
---|
Left hand side | gx |
Right hand side | <Plug>NetrwBrowseXVis |
Description | |
---|
Left hand side | g% |
Right hand side | <Plug>(MatchitVisualBackward) |
Description | |
---|
Left hand side | g<C-X> |
Right hand side | <Cmd>lua require"dial.command".select_augend_gvisual()<CR><Cmd>let &opfunc="dial#operator#decrement_gvisual"<CR>g@ |
Description | |
---|
Left hand side | g<C-A> |
Right hand side | <Cmd>lua require"dial.command".select_augend_gvisual()<CR><Cmd>let &opfunc="dial#operator#increment_gvisual"<CR>g@ |
Description | |
---|
Left hand side | g<Plug>(dial-decrement) |
Right hand side | <Cmd>lua require"dial.command".select_augend_gvisual()<CR><Cmd>let &opfunc="dial#operator#decrement_gvisual"<CR>g@gv |
Description | |
---|
Left hand side | g<Plug>(dial-increment) |
Right hand side | <Cmd>lua require"dial.command".select_augend_gvisual()<CR><Cmd>let &opfunc="dial#operator#increment_gvisual"<CR>g@gv |
Description | Flash |
---|
Left hand side | s |
Right hand side | |
Description | |
---|
Left hand side | <Plug>NetrwBrowseXVis |
Right hand side | :<C-U>call netrw#BrowseXVis()<CR> |
Description | |
---|
Left hand side | <Plug>(MatchitVisualTextObject) |
Right hand side | <Plug>(MatchitVisualMultiBackward)o<Plug>(MatchitVisualMultiForward) |
Description | |
---|
Left hand side | <Plug>(MatchitVisualMultiForward) |
Right hand side | :<C-U>call matchit#MultiMatch("W", "n")<CR>m'gv`` |
Description | |
---|
Left hand side | <Plug>(MatchitVisualMultiBackward) |
Right hand side | :<C-U>call matchit#MultiMatch("bW", "n")<CR>m'gv`` |
Description | |
---|
Left hand side | <Plug>(MatchitVisualBackward) |
Right hand side | :<C-U>call matchit#Match_wrapper('',0,'v')<CR>m'gv`` |
Description | |
---|
Left hand side | <Plug>(MatchitVisualForward) |
Right hand side | :<C-U>call matchit#Match_wrapper('',1,'v')<CR>:if col("''") != col("$") | exe ":normal! m'" | endif<CR>gv`` |
Description | |
---|
Left hand side | <C-X> |
Right hand side | <Cmd>lua require"dial.command".select_augend_visual()<CR><Cmd>let &opfunc="dial#operator#decrement_visual"<CR>g@ |
Description | |
---|
Left hand side | <C-A> |
Right hand side | <Cmd>lua require"dial.command".select_augend_visual()<CR><Cmd>let &opfunc="dial#operator#increment_visual"<CR>g@ |
Description | |
---|
Left hand side | <Plug>(dial-decrement) |
Right hand side | <Cmd>lua require"dial.command".select_augend_visual()<CR><Cmd>let &opfunc="dial#operator#decrement_visual"<CR>g@gv |
Description | |
---|
Left hand side | <Plug>(dial-increment) |
Right hand side | <Cmd>lua require"dial.command".select_augend_visual()<CR><Cmd>let &opfunc="dial#operator#increment_visual"<CR>g@gv |
Operator mode keymaps
Description | |
---|
Left hand side | % |
Right hand side | <Plug>(MatchitOperationForward) |
Description | Treesitter Search |
---|
Left hand side | R |
Right hand side | |
Description | Flash Treesitter |
---|
Left hand side | S |
Right hand side | |
Description | |
---|
Left hand side | [% |
Right hand side | <Plug>(MatchitOperationMultiBackward) |
Description | |
---|
Left hand side | ]% |
Right hand side | <Plug>(MatchitOperationMultiForward) |
Description | |
---|
Left hand side | g% |
Right hand side | <Plug>(MatchitOperationBackward) |
Description | Remote Flash |
---|
Left hand side | r |
Right hand side | |
Description | Flash |
---|
Left hand side | s |
Right hand side | |
Description | |
---|
Left hand side | <Plug>(MatchitOperationMultiForward) |
Right hand side | :<C-U>call matchit#MultiMatch("W", "o")<CR> |
Description | |
---|
Left hand side | <Plug>(MatchitOperationMultiBackward) |
Right hand side | :<C-U>call matchit#MultiMatch("bW", "o")<CR> |
Description | |
---|
Left hand side | <Plug>(MatchitOperationBackward) |
Right hand side | :<C-U>call matchit#Match_wrapper('',0,'o')<CR> |
Description | |
---|
Left hand side | <Plug>(MatchitOperationForward) |
Right hand side | :<C-U>call matchit#Match_wrapper('',1,'o')<CR> |