| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- {
- "default_module": "powerline.segments.vim",
- "segments": {
- "left": [
- {
- "type": "segment_list",
- "function": "powerline.listers.vim.tablister",
- "exclude_function": "single_tab",
- "segments": [
- {
- "function": "tabnr",
- "after": " ",
- "priority": 5
- },
- {
- "function": "file_directory",
- "priority": 40
- },
- {
- "function": "file_name",
- "args": {
- "display_no_file": true
- },
- "priority": 10
- },
- {
- "function": "tab_modified_indicator",
- "priority": 5
- }
- ]
- },
- {
- "type": "segment_list",
- "function": "powerline.listers.vim.bufferlister",
- "include_function": "single_tab",
- "segments": [
- {
- "function": "bufnr",
- "after": " ",
- "priority": 5
- },
- {
- "function": "file_directory",
- "priority": 40
- },
- {
- "function": "file_name",
- "args": {
- "display_no_file": true
- },
- "priority": 10
- },
- {
- "function": "modified_indicator",
- "priority": 5
- }
- ]
- },
- {
- "type": "string",
- "highlight_groups": ["background"],
- "draw_soft_divider": false,
- "draw_hard_divider": false,
- "width": "auto"
- }
- ],
- "right": [
- {
- "type": "string",
- "contents": "Bufs",
- "name": "single_tab",
- "highlight_groups": ["single_tab"],
- "include_function": "single_tab"
- },
- {
- "type": "string",
- "contents": "Tabs",
- "name": "many_tabs",
- "highlight_groups": ["many_tabs"],
- "exclude_function": "single_tab"
- }
- ]
- }
- }
|