From a11c46c29ac23b367dae2b8ff2887879fb9cdbe2 Mon Sep 17 00:00:00 2001 From: kylo252 <59826753+kylo252@users.noreply.github.com> Date: Thu, 26 May 2022 13:28:04 +0200 Subject: feat: prompt when closing modified/term buffers (#2658) --- lua/lvim/core/bufferline.lua | 34 ++++++++++++++++++++++++---------- 1 file changed, 24 insertions(+), 10 deletions(-) (limited to 'lua') diff --git a/lua/lvim/core/bufferline.lua b/lua/lvim/core/bufferline.lua index 2df1e514..28e0f06d 100644 --- a/lua/lvim/core/bufferline.lua +++ b/lua/lvim/core/bufferline.lua @@ -142,26 +142,42 @@ M.setup = function() end end +--stylua: ignore + -- Common kill function for bdelete and bwipeout -- credits: based on bbye and nvim-bufdel ----@param kill_command string defaults to "bd" +---@param kill_command? string defaults to "bd" ---@param bufnr? number defaults to the current buffer ---@param force? boolean defaults to false function M.buf_kill(kill_command, bufnr, force) + kill_command = kill_command or "bd" + local bo = vim.bo local api = vim.api + local fmt = string.format + local fnamemodify = vim.fn.fnamemodify if bufnr == 0 or bufnr == nil then bufnr = api.nvim_get_current_buf() end - kill_command = kill_command or "bd" + local bufname = api.nvim_buf_get_name(bufnr) - -- If buffer is modified and force isn't true, print error and abort - if not force and bo[bufnr].modified then - return api.nvim_err_writeln( - string.format("No write since last change for buffer %d (set force to true to override)", bufnr) - ) + if not force then + local warning + if bo[bufnr].modified then + warning = fmt([[No write since last change for (%s)]], fnamemodify(bufname, ":t")) + elseif api.nvim_buf_get_option(bufnr, "buftype") == "terminal" then + warning = fmt([[Terminal %s will be killed]], bufname) + end + if warning then + vim.ui.input({ + prompt = string.format([[%s. Close it anyway? [y]es or [n]o (default: no): ]], warning), + }, function(choice) + if choice:match "ye?s?" then force = true end + end) + if not force then return end + end end -- Get list of windows IDs with the buffer to close @@ -169,9 +185,7 @@ function M.buf_kill(kill_command, bufnr, force) return api.nvim_win_get_buf(win) == bufnr end, api.nvim_list_wins()) - if #windows == 0 then - return - end + if #windows == 0 then return end if force then kill_command = kill_command .. "!" -- cgit v1.2.3 From 7220f1f2041c35580cff799037f1421a211ccf79 Mon Sep 17 00:00:00 2001 From: kylo252 <59826753+kylo252@users.noreply.github.com> Date: Thu, 26 May 2022 16:06:49 +0200 Subject: feat(cmp): add option to disable friendly-snippets (#2660) authored-by: Emerson Max de Medeiros Silva --- lua/lvim/config/init.lua | 6 ++++++ lua/lvim/plugins.lua | 9 +++++---- 2 files changed, 11 insertions(+), 4 deletions(-) (limited to 'lua') diff --git a/lua/lvim/config/init.lua b/lua/lvim/config/init.lua index 1af9a971..4343ace9 100644 --- a/lua/lvim/config/init.lua +++ b/lua/lvim/config/init.lua @@ -40,6 +40,12 @@ function M:init() custom_section = {}, footer = {}, } + + lvim.builtin.luasnip = { + sources = { + friendly_snippets = true, + }, + } end local function handle_deprecated_settings() diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua index 3055a0a6..9397318e 100644 --- a/lua/lvim/plugins.lua +++ b/lua/lvim/plugins.lua @@ -58,19 +58,20 @@ local core_plugins = { end, requires = { "L3MON4D3/LuaSnip", - "rafamadriz/friendly-snippets", }, }, { "rafamadriz/friendly-snippets", + disable = not lvim.builtin.luasnip.sources.friendly_snippets, }, { "L3MON4D3/LuaSnip", config = function() local utils = require "lvim.utils" - local paths = { - utils.join_paths(get_runtime_dir(), "site", "pack", "packer", "start", "friendly-snippets"), - } + local paths = {} + if lvim.builtin.luasnip.sources.friendly_snippets then + paths[#paths + 1] = utils.join_paths(get_runtime_dir(), "site", "pack", "packer", "start", "friendly-snippets") + end local user_snippets = utils.join_paths(get_config_dir(), "snippets") if utils.is_directory(user_snippets) then paths[#paths + 1] = user_snippets -- cgit v1.2.3 From ed50b7d33fe4a00494343dcb3db861f483d147f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodr=C3=ADguez=20Rivero?= Date: Mon, 30 May 2022 08:29:12 +0200 Subject: fix(log): add date to the timestamp of logs (#2669) --- lua/lvim/core/log.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lua') diff --git a/lua/lvim/core/log.lua b/lua/lvim/core/log.lua index bc05d72b..49c70f83 100644 --- a/lua/lvim/core/log.lua +++ b/lua/lvim/core/log.lua @@ -52,7 +52,7 @@ function Log:init() processors = { structlog.processors.Namer(), structlog.processors.StackWriter({ "line", "file" }, { max_parents = 3, stack_level = 2 }), - structlog.processors.Timestamper "%H:%M:%S", + structlog.processors.Timestamper "%F %H:%M:%S", }, formatter = structlog.formatters.Format( -- "%s [%-5s] %s: %-30s", -- cgit v1.2.3 From 7c53bd64c570c1e7151090eb758a17211f45965d Mon Sep 17 00:00:00 2001 From: Abouzar Parvan Date: Tue, 31 May 2022 19:45:43 +0430 Subject: fix(nvimtree): update nvim-tree setup (#2681) --- lua/lvim/core/nvimtree.lua | 60 +++++++++++++++++++++++----------------------- 1 file changed, 30 insertions(+), 30 deletions(-) (limited to 'lua') diff --git a/lua/lvim/core/nvimtree.lua b/lua/lvim/core/nvimtree.lua index e4d28220..7f50f256 100644 --- a/lua/lvim/core/nvimtree.lua +++ b/lua/lvim/core/nvimtree.lua @@ -2,7 +2,6 @@ local M = {} local Log = require "lvim.core.log" function M.config() - local vim_show_icons = lvim.use_icons and 1 or 0 lvim.builtin.nvimtree = { active = true, on_config_done = nil, @@ -76,7 +75,35 @@ function M.config() }, icons = { webdev_colors = lvim.use_icons, + show = { + git = lvim.use_icons, + folder = lvim.use_icons, + file = lvim.use_icons, + folder_arrow = lvim.use_icons, + }, + glyphs = { + default = "", + symlink = "", + git = { + unstaged = "", + staged = "S", + unmerged = "", + renamed = "➜", + deleted = "", + untracked = "U", + ignored = "◌", + }, + folder = { + default = "", + open = "", + empty = "", + empty_open = "", + symlink = "", + }, + }, }, + highlight_git = true, + root_folder_modifier = ":t", }, filters = { dotfiles = false, @@ -120,34 +147,6 @@ function M.config() }, }, }, - show_icons = { - git = vim_show_icons, - folders = vim_show_icons, - files = vim_show_icons, - folder_arrows = vim_show_icons, - }, - git_hl = 1, - root_folder_modifier = ":t", - icons = { - default = "", - symlink = "", - git = { - unstaged = "", - staged = "S", - unmerged = "", - renamed = "➜", - deleted = "", - untracked = "U", - ignored = "◌", - }, - folder = { - default = "", - open = "", - empty = "", - empty_open = "", - symlink = "", - }, - }, } lvim.builtin.which_key.mappings["e"] = { "NvimTreeToggle", "Explorer" } end @@ -165,7 +164,7 @@ function M.setup() -- Implicitly update nvim-tree when project module is active if lvim.builtin.project.active then - lvim.builtin.nvimtree.respect_buf_cwd = 1 + lvim.builtin.nvimtree.setup.respect_buf_cwd = true lvim.builtin.nvimtree.setup.update_cwd = true lvim.builtin.nvimtree.setup.update_focused_file = { enable = true, update_cwd = true } end @@ -173,6 +172,7 @@ function M.setup() local function telescope_find_files(_) require("lvim.core.nvimtree").start_telescope "find_files" end + local function telescope_live_grep(_) require("lvim.core.nvimtree").start_telescope "live_grep" end -- cgit v1.2.3 From f778a38c31daf53db42c4187faf08fcd004d441b Mon Sep 17 00:00:00 2001 From: Akihiro Okuno Date: Mon, 6 Jun 2022 18:50:24 +0900 Subject: fix(autocmds): toggle format-on-save properly (#2659) --- lua/lvim/core/autocmds.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lua') diff --git a/lua/lvim/core/autocmds.lua b/lua/lvim/core/autocmds.lua index 0ca21439..20716e83 100644 --- a/lua/lvim/core/autocmds.lua +++ b/lua/lvim/core/autocmds.lua @@ -118,11 +118,11 @@ function M.configure_format_on_save() end function M.toggle_format_on_save() - local exists, _ = pcall(vim.api.nvim_get_autocmds, { + local exists, autocmds = pcall(vim.api.nvim_get_autocmds, { group = "lsp_format_on_save", event = "BufWritePre", }) - if not exists then + if not exists or #autocmds == 0 then M.enable_format_on_save() else M.disable_format_on_save() -- cgit v1.2.3