Use escape sequence instead of raw binaries (#662)
* Fix: use escape sequence instead of binary chars binary data will confuse some programs e.g. file and treat the code as "data" instead of "text" * Fix: remove redundant binary character "0x1a"
This commit is contained in:
parent
18a07f790e
commit
43c69a3479
|
@ -7,7 +7,7 @@ local default_options = {
|
|||
}
|
||||
|
||||
function M:init(options)
|
||||
options.buffers_color = nil -- bufers_color isn't windpws option.
|
||||
options.buffers_color = nil -- bufers_color isn't windpws option.
|
||||
M.super.init(self, options)
|
||||
|
||||
self.options = vim.tbl_deep_extend('keep', self.options or {}, default_options)
|
||||
|
|
|
@ -8,7 +8,7 @@ Mode.map = {
|
|||
['no'] = 'O-PENDING',
|
||||
['nov'] = 'O-PENDING',
|
||||
['noV'] = 'O-PENDING',
|
||||
['no'] = 'O-PENDING',
|
||||
['no\x16'] = 'O-PENDING',
|
||||
['niI'] = 'NORMAL',
|
||||
['niR'] = 'NORMAL',
|
||||
['niV'] = 'NORMAL',
|
||||
|
@ -17,11 +17,11 @@ Mode.map = {
|
|||
['vs'] = 'VISUAL',
|
||||
['V'] = 'V-LINE',
|
||||
['Vs'] = 'V-LINE',
|
||||
[''] = 'V-BLOCK',
|
||||
['s'] = 'V-BLOCK',
|
||||
['\x16'] = 'V-BLOCK',
|
||||
['\x16s'] = 'V-BLOCK',
|
||||
['s'] = 'SELECT',
|
||||
['S'] = 'S-LINE',
|
||||
[''] = 'S-BLOCK',
|
||||
['\x13'] = 'S-BLOCK',
|
||||
['i'] = 'INSERT',
|
||||
['ic'] = 'INSERT',
|
||||
['ix'] = 'INSERT',
|
||||
|
|
Loading…
Reference in New Issue