Compare commits

..

No commits in common. "0e45f3229a67963c403f6f4b77106723845d35d8" and "5a80d2706bb1419dbecef1127ed3553a2f339b4d" have entirely different histories.

3 changed files with 1 additions and 18 deletions

View file

@ -42,18 +42,6 @@ local aucmd_dict = {
pattern = "*", pattern = "*",
command = "set guicursor=a:hor1-blinkon0" command = "set guicursor=a:hor1-blinkon0"
} }
},
QuickFixCmdPost = {
{
group = custom_augroup_id,
pattern = "[^l]*",
command = "cwindow"
},
{
group = custom_augroup_id,
pattern = "l*",
command = "lwindow"
}
} }
} }

View file

@ -19,11 +19,8 @@ remap('n', '<Leader>P', '<ESC>"*p', opts)
-- Search and Replace -- Search and Replace
remap('n', 'c.' , ':%s//g<Left><Left>' , opts) remap('n', 'c.' , ':%s//g<Left><Left>' , opts)
remap('n', '<Leader>c.', ':%s/\\<<C-r><C-w>\\>//g<Left><Left>', opts) remap('n', '<Leader>c.', ':%s/\\<<C-r><C-w>\\>//g<Left><Left>', opts)
-- Exact Search in buffer -- Exact Search
remap('n', 'S', '/\\<\\><Left><Left>', opts) remap('n', 'S', '/\\<\\><Left><Left>', opts)
-- Search
remap('n', '<Leader>s' , ':silent grep!<SPACE>' , opts)
remap('n', '<LocalLeader>s', ':silent lgrep!<SPACE>', opts)
-- Quit -- Quit
remap('n', '<Leader>x', '<Esc>:x<CR>' , opts) remap('n', '<Leader>x', '<Esc>:x<CR>' , opts)
remap('n', '<Leader>q', '<Esc>:q<CR>' , opts) remap('n', '<Leader>q', '<Esc>:q<CR>' , opts)

View file

@ -17,5 +17,3 @@
--glob=!*/gst-integration-testsuites/* --glob=!*/gst-integration-testsuites/*
--glob=!tests/ --glob=!tests/
--glob=!NEWS --glob=!NEWS
--glob=!build/*
--glob=!ci/*