spacevim/bundle/defx.nvim/rplugin/python3/defx/column/filename.py
JIe 2bb7059579
Some checks failed
Detach Plugins / check (FlyGrep.vim) (push) Has been cancelled
Detach Plugins / check (GitHub.vim) (push) Has been cancelled
Detach Plugins / check (JavaUnit.vim) (push) Has been cancelled
Detach Plugins / check (SourceCounter.vim) (push) Has been cancelled
Detach Plugins / check (cpicker.nvim) (push) Has been cancelled
Detach Plugins / check (dein-ui.vim) (push) Has been cancelled
Detach Plugins / check (git.vim) (push) Has been cancelled
Detach Plugins / check (iedit.vim) (push) Has been cancelled
Detach Plugins / check (scrollbar.vim) (push) Has been cancelled
Detach Plugins / check (vim-chat) (push) Has been cancelled
Detach Plugins / check (vim-cheat) (push) Has been cancelled
Detach Plugins / check (vim-todo) (push) Has been cancelled
Detach Plugins / check (xmake.vim) (push) Has been cancelled
test / Linux (nvim, nightly) (push) Has been cancelled
test / Linux (nvim, v0.3.8) (push) Has been cancelled
test / Linux (nvim, v0.4.0) (push) Has been cancelled
test / Linux (nvim, v0.4.2) (push) Has been cancelled
test / Linux (nvim, v0.4.3) (push) Has been cancelled
test / Linux (nvim, v0.4.4) (push) Has been cancelled
test / Linux (nvim, v0.5.0) (push) Has been cancelled
test / Linux (nvim, v0.5.1) (push) Has been cancelled
test / Linux (nvim, v0.6.0) (push) Has been cancelled
test / Linux (nvim, v0.6.1) (push) Has been cancelled
test / Linux (nvim, v0.7.0) (push) Has been cancelled
test / Linux (nvim, v0.7.2) (push) Has been cancelled
test / Linux (nvim, v0.8.0) (push) Has been cancelled
test / Linux (nvim, v0.8.1) (push) Has been cancelled
test / Linux (nvim, v0.8.2) (push) Has been cancelled
test / Linux (nvim, v0.8.3) (push) Has been cancelled
test / Linux (nvim, v0.9.0) (push) Has been cancelled
test / Linux (nvim, v0.9.1) (push) Has been cancelled
test / Linux (true, vim, v7.4.052) (push) Has been cancelled
test / Linux (true, vim, v7.4.1689) (push) Has been cancelled
test / Linux (true, vim, v7.4.629) (push) Has been cancelled
test / Linux (true, vim, v8.0.0027) (push) Has been cancelled
test / Linux (true, vim, v8.0.0183) (push) Has been cancelled
test / Linux (vim, nightly) (push) Has been cancelled
test / Linux (vim, v8.0.0184) (push) Has been cancelled
test / Linux (vim, v8.0.1453) (push) Has been cancelled
test / Linux (vim, v8.1.2269) (push) Has been cancelled
test / Linux (vim, v8.2.2434) (push) Has been cancelled
test / Linux (vim, v8.2.3995) (push) Has been cancelled
test / Windows (nvim, nightly) (push) Has been cancelled
test / Windows (nvim, v0.3.8) (push) Has been cancelled
test / Windows (nvim, v0.4.2) (push) Has been cancelled
test / Windows (nvim, v0.4.3) (push) Has been cancelled
test / Windows (nvim, v0.4.4) (push) Has been cancelled
test / Windows (nvim, v0.5.0) (push) Has been cancelled
test / Windows (nvim, v0.5.1) (push) Has been cancelled
test / Windows (nvim, v0.6.0) (push) Has been cancelled
test / Windows (nvim, v0.6.1) (push) Has been cancelled
test / Windows (nvim, v0.7.0) (push) Has been cancelled
test / Windows (nvim, v0.7.2) (push) Has been cancelled
test / Windows (nvim, v0.8.0) (push) Has been cancelled
test / Windows (nvim, v0.8.1) (push) Has been cancelled
test / Windows (nvim, v0.8.2) (push) Has been cancelled
test / Windows (nvim, v0.8.3) (push) Has been cancelled
test / Windows (nvim, v0.9.0) (push) Has been cancelled
test / Windows (nvim, v0.9.1) (push) Has been cancelled
test / Windows (vim, nightly) (push) Has been cancelled
test / Windows (vim, v7.4.1185) (push) Has been cancelled
test / Windows (vim, v7.4.1689) (push) Has been cancelled
test / Windows (vim, v8.0.0027) (push) Has been cancelled
test / Windows (vim, v8.0.1453) (push) Has been cancelled
test / Windows (vim, v8.1.2269) (push) Has been cancelled
test / Windows (vim, v8.2.2434) (push) Has been cancelled
test / Windows (vim, v8.2.3995) (push) Has been cancelled
docker / docker (push) Has been cancelled
mirror / check (coding) (push) Has been cancelled
mirror / check (gitee) (push) Has been cancelled
mirror / check (gitlab) (push) Has been cancelled
init
2024-08-21 14:17:26 +08:00

108 lines
3.7 KiB
Python

# ============================================================================
# FILE: filename.py
# AUTHOR: Shougo Matsushita <Shougo.Matsu at gmail.com>
# License: MIT license
# ============================================================================
from defx.base.column import Base, Highlights
from defx.context import Context
from defx.util import Nvim, Candidate, len_bytes, strwidth
from defx.view import View
import typing
class Column(Base):
def __init__(self, vim: Nvim) -> None:
super().__init__(vim)
self.name = 'filename'
self.vars = {
'min_width': 40,
'max_width': 100,
'root_marker_highlight': 'Constant',
}
self.is_stop_variable = True
self.has_get_with_highlights = True
self._current_length = 0
self._syntaxes = [
'directory',
'directory_marker',
'root',
'root_marker',
]
self._context: Context = Context()
self._directory_marker = '**'
self._file_marker = '||'
def on_init(self, view: View, context: Context) -> None:
self._context = context
def get_with_variable_text(
self, context: Context, variable_text: str, candidate: Candidate
) -> typing.Tuple[str, Highlights]:
text = variable_text
highlights = []
if candidate['is_directory']:
if candidate['is_root']:
root_len = len_bytes(candidate['root_marker'])
highlights = [
(f'{self.highlight_name}_root_marker',
self.start, root_len),
(f'{self.highlight_name}_root',
self.start + root_len,
len_bytes(candidate['word']) - root_len),
]
else:
highlights = [(f'{self.highlight_name}_directory',
self.start, len_bytes(candidate['word']))]
text += candidate['word']
return (self._truncate(text), highlights)
def length(self, context: Context) -> int:
max_fnamewidth = max([strwidth(self.vim, x['word'])
for x in context.targets])
max_fnamewidth += context.variable_length
max_fnamewidth += len(self._file_marker)
max_width = int(self.vars['max_width'])
if max_width < 0:
max_width = int(-max_width * context.winwidth / 100)
self._current_length = max(
min(max_fnamewidth, max_width),
int(self.vars['min_width']))
return self._current_length
def syntaxes(self) -> typing.List[str]:
return [self.syntax_name + '_' + x for x in self._syntaxes]
def highlight_commands(self) -> typing.List[str]:
commands: typing.List[str] = []
commands.append(
'highlight default link {}_{} {}'.format(
self.highlight_name, 'directory', 'PreProc'))
commands.append(
'highlight default link {}_{} {}'.format(
self.highlight_name, 'root_marker',
self.vars['root_marker_highlight']))
commands.append(
'highlight default link {}_{} {}'.format(
self.highlight_name, 'root', 'Identifier'))
return commands
def _truncate(self, word: str) -> str:
width = strwidth(self.vim, word)
max_length = self._current_length
if (width > max_length or
len(word) != len(bytes(word, 'utf-8', 'surrogatepass'))):
return str(self.vim.call(
'defx#util#truncate_skipping',
word, max_length, int(max_length / 3), '...'))
return word + ' ' * (max_length - width)