Skip to content

tatoolbar left panel

gabdub edited this page Aug 2, 2021 · 5 revisions

Left toolbar:

There are currently 3 options for the left vertical toolbar that can be enabled using 'require' in init.lua.

  • User buttons
  • HTML toolbar
  • LIST toolbar

User buttons

User buttons

This is the default option (no 'require' is needed). It can be shown/hide from the configuration panel. Just add the buttons you like as shown in the picture.

HTML toolbar

HTML toolbar

This toolbar allows you to type some common html tags. Some modifiers can be turned on/off by pressing the buttons named: "cl" (to add "class="), "id" (to add "id=") or "st" (to add "style="). It is automatically displayed in buffers that use the 'html' lexer and can be manually shown/hide from the View menu (Shift+F10) or from the configuration panel. Add require('htmltoolbar') to init.lua to activate.

LIST toolbar

LIST toolbar

This toolbar allows you to install different types of lists. Control+F6 (or from the configuration panel): show/hide the left panel F6/Shift+F6: change to next/previous list

Add require('listtoolbar') to init.lua to activate and require('listtoolbar.xxx') to add the desired lists:

  • require('listtoolbar.recentprojlist') recent projects list

  • require('listtoolbar.projlist') project list

  • require('listtoolbar.ctaglist') ctag list: view and jump to the symbols defined in the current buffer. It requires the project module and an open project with a ctag file defined. Alt+F6: filter ctag list

  • require('listtoolbar.filebrowser') basic file browser

see also:

see code:

Clone this wiki locally