Giter Club home page Giter Club logo

Comments (10)

clason avatar clason commented on August 16, 2024

Do not lazy-load VimTeX (at all); this will prevent it from working and is not necessary (it lazy-loads itself, as plugins should).

from vimtex.

karmatothex avatar karmatothex commented on August 16, 2024

Lunarvim uses folke/lazy.nvim.
Is there any setting I could use, so vimtex it not lazy loaded?

from vimtex.

clason avatar clason commented on August 16, 2024

I cannot give advice on Lunarvim (except don't use it). If you use lazy.nvim itself, you should consult the docs.

from vimtex.

lervag avatar lervag commented on August 16, 2024

So, I'm currently trying to set up vimtex forwardsearch and inversesearch with Zathura. Forwardsearch works like a charm, while inversesearch does not.

The common reason for this is that people lazy load VimTeX. It is quite easy to check this. If you open Neovim from a terminal with nvim, it should show an empty buffer (or a start buffer). Can you do :VimtexInverseSearch now? If not, then you are lazy loading VimTeX.

Another way to check: Run :scriptnames after starting neovim. If you don't find any vimtex scripts, you are lazy loading.

this is my current config: …

You should NOT use vim.cmd("call vimtex#init()")!!!!!!

Try this:

lvim.plugins = {
  {
    "lervag/vimtex",
    lazy = false,
    init = function()
      vim.g.vimtex_view_method = 'zathura'
    end,
  },
}

Notice that we specify to not lazy load and that configuration is added in the init function. Also, you don't need to set vimtex_view_general_viewer.

    Error detected while processing command line:
    E492: Not an editor command: VimtexInverseSearch 23 '/home/max/LaTeX/./hello_world.tex'

That indicates that you are lazy loading stuff.

So there seems to be an issue with VimtexInverseSearch . When I open the .tex file using lvim hello_world.tex and then run :VimtexInverseSearch 10 hello_world.tex LunarVim instantly shuts down.

That is expected. You should not use :VimtexInverseSearch yourself unless you know what you are doing. :)

from vimtex.

karmatothex avatar karmatothex commented on August 16, 2024

Thank you for the detailed answer.

I have adjusted my config as you suggested

lvim.plugins = {
  {
    "lervag/vimtex",
    lazy = false,
    init = function()
      vim.g.vimtex_view_method = 'zathura'
    end,
  },
}

Unfortunately, the behavior is still the same. Forwardsearch works just fine, inversesearch not.

Also, when I run :scriptnames after starting neovim I get this:
image

There are some vimtex scripts, but probably not all?

It looks to me as if the lazy=false option is not working. Maybe this is a specific Lunarvim problem. I also have an issue open here Issue #4455/LunarVim but have not yet received any feedback.

from vimtex.

lervag avatar lervag commented on August 16, 2024

What happens if you run /usr/bin/nvim/bin/nvim in a terminal? Do you get your expected lunarvim version of neovim running with your config?

from vimtex.

karmatothex avatar karmatothex commented on August 16, 2024

What happens if you run /usr/bin/nvim/bin/nvim in a terminal? Do you get your expected lunarvim version of neovim running with your config?

No, this will open vanilla neovim. To run LunarVim I have to use the lvim command.

I was able to fix my issue by switching to LazyVim and using the vimtex settings that you recommended.
Thank you for your help, I really appreciate it!

from vimtex.

lervag avatar lervag commented on August 16, 2024

What happens if you run /usr/bin/nvim/bin/nvim in a terminal? Do you get your expected lunarvim version of neovim running with your config?

No, this will open vanilla neovim. To run LunarVim I have to use the lvim command.

Ok! In this case, you have to set the g:vimtex_callback_progpath variable to lvim or to the full path (found e.g. by which lvim in a terminal).

I was able to fix my issue by switching to LazyVim and using the vimtex settings that you recommended. Thank you for your help, I really appreciate it!

Glad to hear it!

from vimtex.

estrac avatar estrac commented on August 16, 2024

Thank you so much @lervag! I had exactly the same problem in LunarVim and setting vim.g:vimtex_callback_progpath to the full path to lvim solved my issue.

I'll note that lazy loading was not the problem (using the "standard" way to load plugins worked fine in LunarVim).

Finally, I'll add that I'm running Wayland, so I also needed to set vim.g.vimtex_view_method = "zathura_simple"

from vimtex.

lervag avatar lervag commented on August 16, 2024

Thank you so much @lervag! I had exactly the same problem in LunarVim and setting vim.g:vimtex_callback_progpath to the full path to lvim solved my issue.

Great, glad to hear it! If there's a LunarVim wiki or something similar where people share things related to configuring plugins in LunarVim, perhaps this is relevant stuff to add there?

I'll note that lazy loading was not the problem (using the "standard" way to load plugins worked fine in LunarVim).

Lazy loading will break inverse search. And lazy loading of VimTeX does not really bring any significant benefit, so please, just don't do that.

Finally, I'll add that I'm running Wayland, so I also needed to set vim.g.vimtex_view_method = "zathura_simple"

👍🏻

from vimtex.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.