Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Comment.nvim] nil for .lua files #395

Open
Nikola-Milovic opened this issue Aug 21, 2023 · 0 comments
Open

[Comment.nvim] nil for .lua files #395

Nikola-Milovic opened this issue Aug 21, 2023 · 0 comments

Comments

@Nikola-Milovic
Copy link

Nikola-Milovic commented Aug 21, 2023

Trying to comment out a .lua file in my config and I keep getting

[Comment.nvim] nil warning in my messages

My comment.lua setup

local M = {}

function M.setup()
    local status_ok, comment = pcall(require, "Comment")
    if not status_ok then
        return
    end

    comment.setup({
        pre_hook = function(ctx)
            local U = require("Comment.utils")

            local location = nil
            if ctx.ctype == U.ctype.block then
                location = require("ts_context_commentstring.utils").get_cursor_location()
            elseif ctx.cmotion == U.cmotion.v or ctx.cmotion == U.cmotion.V then
                location = require("ts_context_commentstring.utils").get_visual_start_location()
            end

            return require("ts_context_commentstring.internal").calculate_commentstring({
                key = ctx.ctype == U.ctype.line and "__default" or "__multiline",
                location = location,
            })
        end,
    })
end

return M

My lazy setup

	{
		"numToStr/Comment.nvim",
		config = function()
			require("nikola.plugins.comment").setup()
		end,
		lazy = false,
	},
["/"] = { '<ESC><CMD>lua require("Comment.api").toggle.linewise(vim.fn.visualmode())<CR>', "Comment" },
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant