mirror of
https://github.com/junegunn/vim-easy-align.git
synced 2025-11-14 12:53:48 -05:00
Apply filter option to substrings in blockwise-visual mode
This commit is contained in:
@@ -1535,6 +1535,28 @@ Expect:
|
||||
bbbbb=bbbbb=bbbbb
|
||||
aaa = aaa = aaa
|
||||
|
||||
Given clojure (filter with blockwise-visual mode):
|
||||
(let [a 1
|
||||
bbb 2
|
||||
ccccc (range
|
||||
10 20)]
|
||||
(prn [a bbb ccccc]))
|
||||
|
||||
Do (filter with blockwise-visual mode):
|
||||
f[
|
||||
vi[
|
||||
\<C-V>
|
||||
\<Enter>
|
||||
\<C-F>g/^\S\<Enter>
|
||||
\<Space>
|
||||
|
||||
Expect clojure:
|
||||
(let [a 1
|
||||
bbb 2
|
||||
ccccc (range
|
||||
10 20)]
|
||||
(prn [a bbb ccccc]))
|
||||
|
||||
###########################################################
|
||||
|
||||
Given (hard-tab indentation (#19)):
|
||||
|
||||
Reference in New Issue
Block a user