mirror of
https://github.com/junegunn/vim-easy-align.git
synced 2025-11-09 02:13:49 -05:00
initial commit
This commit is contained in:
50
README.md
Normal file
50
README.md
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
vim-lesser-align
|
||||||
|
================
|
||||||
|
|
||||||
|
Yet another Vim alignment plugin without too much ambition.
|
||||||
|
This plugin clearly has less features than the other pre-existing ones with the similar goals,
|
||||||
|
but is simpler, easier to use, and good enough for most of the cases.
|
||||||
|
|
||||||
|
Usage
|
||||||
|
-----
|
||||||
|
|
||||||
|
Vim-lesser-align defines `LesserAlign` command in the visual mode.
|
||||||
|
For convenience, it is advised that you define a mapping for triggering it in your `.vimrc`.
|
||||||
|
|
||||||
|
```vim
|
||||||
|
vnoremap <silent> <Enter> :LesserAlign<cr>
|
||||||
|
```
|
||||||
|
|
||||||
|
Then, a key sequence becomes a combination of 3 parts.
|
||||||
|
|
||||||
|
1. `<Enter>`
|
||||||
|
- Shortcut for `:LesserAssign<Enter>`
|
||||||
|
1. Integer (optional, default: 1)
|
||||||
|
- `1`: Alignment around 1st delimiter
|
||||||
|
- `2`: Alignment around 2nd delimiter
|
||||||
|
- `...`
|
||||||
|
- `*`: Alignment around all delimiters (tabularize)
|
||||||
|
1. Delimiter
|
||||||
|
- `=`
|
||||||
|
- Operators containing equals sign (=, ==, !=, +=, &&=, ...)
|
||||||
|
- `<space>`
|
||||||
|
- Space
|
||||||
|
- `:`
|
||||||
|
- `,`
|
||||||
|
- `|`
|
||||||
|
|
||||||
|
| Keystroke | Description |
|
||||||
|
| ------------------- | ----------------------------------------------------- |
|
||||||
|
| `<Enter>=` | *A*lignment around 1st equals sign (and the likes) |
|
||||||
|
| `<Enter>2=` | *A*lignment around *2*nd equals sign (and the likes) |
|
||||||
|
| `<Enter>3=` | *A*lignment around *3*rd equals sign (and the likes) |
|
||||||
|
| `<Enter>*=` | *A*lignment around *all* equals signs (and the likes) |
|
||||||
|
| `<Enter><space>` | *A*lignment around *1*st whitespace |
|
||||||
|
| `<Enter>2<space>` | *A*lignment around *2*nd whitespace |
|
||||||
|
| `<Enter>:` | *A*lignment around *1*st colon |
|
||||||
|
| ... | ... |
|
||||||
|
|
||||||
|
Author
|
||||||
|
------
|
||||||
|
|
||||||
|
[Junegunn Choi](https://github.com/junegunn)
|
||||||
115
autoload/lesser_align.vim
Normal file
115
autoload/lesser_align.vim
Normal file
@@ -0,0 +1,115 @@
|
|||||||
|
if exists("g:lesser_align_loaded")
|
||||||
|
finish
|
||||||
|
endif
|
||||||
|
let g:lesser_align_loaded = 1
|
||||||
|
|
||||||
|
function! s:do_align(fl, ll, pattern, nth, ml, mr, ljust, recursive)
|
||||||
|
let lines = {}
|
||||||
|
let just_len = 0
|
||||||
|
let max_delim_len = 0
|
||||||
|
let max_tokens = 0
|
||||||
|
let pattern = '\s*\(' .a:pattern. '\)\s*'
|
||||||
|
for line in range(a:fl, a:ll)
|
||||||
|
let tokens = split(getline(line), pattern.'\zs')
|
||||||
|
let max_tokens = len(tokens) > max_tokens ? len(tokens) : max_tokens
|
||||||
|
|
||||||
|
if len(tokens) < a:nth
|
||||||
|
continue
|
||||||
|
endif
|
||||||
|
|
||||||
|
let nth = match(tokens[0], '^\s*$') != -1 ? a:nth + 1 : a:nth
|
||||||
|
let last = tokens[nth - 1]
|
||||||
|
let before = (nth > 1 ? join(tokens[0 : nth - 2], '') : '') . substitute(last, pattern.'$', '', '')
|
||||||
|
let after = join(tokens[nth : -1], '')
|
||||||
|
|
||||||
|
if match(last, pattern.'$') == -1
|
||||||
|
continue
|
||||||
|
endif
|
||||||
|
|
||||||
|
let delim = matchlist(tokens[nth - 1], pattern)[1]
|
||||||
|
let just_len = len(before) > just_len ? len(before) : just_len
|
||||||
|
let max_delim_len = len(delim) > max_delim_len ? len(delim) : max_delim_len
|
||||||
|
let lines[line] = [before, after, delim]
|
||||||
|
endfor
|
||||||
|
|
||||||
|
for [line, tokens] in items(lines)
|
||||||
|
let [prefix, suffix, delim] = tokens
|
||||||
|
let pad = just_len - len(prefix)
|
||||||
|
if pad > 0
|
||||||
|
for i in range(pad)
|
||||||
|
if a:ljust
|
||||||
|
let suffix = ' '. suffix
|
||||||
|
else
|
||||||
|
let prefix = prefix . ' '
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
endif
|
||||||
|
let pad = max_delim_len - len(delim)
|
||||||
|
if pad > 0
|
||||||
|
for i in range(pad)
|
||||||
|
let delim = ' '. delim
|
||||||
|
endfor
|
||||||
|
endif
|
||||||
|
let ml = empty(prefix) ? '' : a:ml
|
||||||
|
let mr = empty(suffix) ? '' : a:mr
|
||||||
|
call setline(line, substitute(join([prefix, ml, delim, mr, suffix], ''), '\s*$', '', ''))
|
||||||
|
endfor
|
||||||
|
|
||||||
|
if a:recursive && a:nth < max_tokens
|
||||||
|
call s:do_align(a:fl, a:ll, a:pattern, a:nth + 1, a:ml, a:mr, a:ljust, a:recursive)
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
function! lesser_align#align() range
|
||||||
|
echon "\rlesser-align ()"
|
||||||
|
let n = ''
|
||||||
|
let recursive = 0
|
||||||
|
|
||||||
|
while 1
|
||||||
|
let c = getchar()
|
||||||
|
let ch = nr2char(c)
|
||||||
|
if c == 3 || c == 27
|
||||||
|
return
|
||||||
|
elseif c >= 48 && c <= 57
|
||||||
|
if recursive
|
||||||
|
echo "Number(*) already specified"
|
||||||
|
return
|
||||||
|
endif
|
||||||
|
let n = n . nr2char(c)
|
||||||
|
echon "\rlesser-align (". n .")"
|
||||||
|
elseif ch == '*'
|
||||||
|
if !empty(n)
|
||||||
|
echo "Number already specified"
|
||||||
|
return
|
||||||
|
endif
|
||||||
|
let recursive = 1
|
||||||
|
echon "\rlesser-align (*)"
|
||||||
|
else
|
||||||
|
break
|
||||||
|
endif
|
||||||
|
endwhile
|
||||||
|
|
||||||
|
let n = empty(n) ? 1 : n
|
||||||
|
|
||||||
|
let error = 0
|
||||||
|
if ch == ' '
|
||||||
|
call s:do_align(a:firstline, a:lastline, ' ', n, '', '', 0, recursive)
|
||||||
|
elseif ch == '='
|
||||||
|
call s:do_align(a:firstline, a:lastline, '<=>\|&&=\|||=\|=\~\|=>\|[:+/*!%^=-]\?=', n, ' ', ' ', 0, recursive)
|
||||||
|
elseif ch == ':'
|
||||||
|
call s:do_align(a:firstline, a:lastline, ':', n, '', ' ', 1, recursive)
|
||||||
|
elseif ch == ','
|
||||||
|
call s:do_align(a:firstline, a:lastline, ',', n, '', ' ', 1, recursive)
|
||||||
|
elseif ch == '|'
|
||||||
|
call s:do_align(a:firstline, a:lastline, '|', n, ' ', ' ', 0, recursive)
|
||||||
|
else
|
||||||
|
let error = 1
|
||||||
|
endif
|
||||||
|
|
||||||
|
if error
|
||||||
|
echon "\rUnknown delimiter: ". ch
|
||||||
|
else
|
||||||
|
echon "\rlesser-align (". (recursive ? '*' : n) . ch .")"
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
6
plugin/lesser_align.vim
Normal file
6
plugin/lesser_align.vim
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
if exists("g:lesser_align_plugin_loaded")
|
||||||
|
finish
|
||||||
|
endif
|
||||||
|
let g:lesser_align_plugin_loaded = 1
|
||||||
|
|
||||||
|
command! -nargs=0 -range LesserAlign <line1>,<line2>call lesser_align#align()
|
||||||
Reference in New Issue
Block a user