From 1d327eb10b0092b519823950631ae1855755f3a9 Mon Sep 17 00:00:00 2001 From: Manuel Morales Date: Tue, 13 Jul 2021 11:36:23 -0500 Subject: feat: Change README documentation to set tabline Set tabline in a lua-ish manner --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index f1970cd..59f3327 100644 --- a/README.md +++ b/README.md @@ -16,12 +16,9 @@ use { 'alvarosevilla95/luatab.nvim', requires='kyazdani42/nvim-web-devicons' } Add this to your init.lua: ``` -Tabline = require'luatab'.tabline -vim.cmd[[ set tabline=%!luaeval('Tabline()') ]] +vim.o.tabline = '%!v:lua.require\'luatab\'.tabline()' ``` -Note: `require'luatab'.tabline` must be assigned to a global variable for it to be picked up by `luaeval`. If you know a better method, PRs are welcome. - ## Configuration You can also define your own tabline function using the provided functions for help. The default tabline is equivalent to: ``` -- cgit v1.2.3 From 4aa9bebdb4007428cfca4ffd22e42f08e2cc88ec Mon Sep 17 00:00:00 2001 From: Manuel Morales Date: Tue, 13 Jul 2021 12:16:16 -0500 Subject: feat: Solution to issue #3 Used string.match to extract final portion of bufname, this will get the first word of the command run in the terminal which, usually, will be the command running --- lua/luatab/init.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/luatab/init.lua b/lua/luatab/init.lua index 597af3a..5e419c2 100644 --- a/lua/luatab/init.lua +++ b/lua/luatab/init.lua @@ -11,7 +11,8 @@ local function tabName(bufnr) elseif file:sub(file:len()-2, file:len()) == 'FZF' then return 'FZF' elseif buftype == 'terminal' then - return 'zsh' + _, mtch = string.match(file, "term:(.*):(%a+)") + return mtch ~= nil and mtch or 'zsh' elseif file == '' then return '[No Name]' end -- cgit v1.2.3