Giter Site home page Giter Site logo

Comments (3)

faho avatar faho commented on May 25, 2024 1

So I have a nice setup like this:

Note: Setting the XDG variables in config.fish basically doesn't really work because it is too late.

If you want to really use them for anything, you'll have to set them outside of fish. Of course here you set them to their defaults, so it doesn't really matter.

In this case I suspect that nvim starts fish with them set to something else, the config snippets are read according to that directory, then your config.fish is read but at that point the snippets are already done.

The snippets are $__fish_config_dir/conf.d/*.fish $__fish_sysconf_dir/conf.d/*.fish $__fish_vendor_confdirs/*.fish, you can see what you get there with e.g.

set -l snippets $__fish_config_dir/conf.d/*.fish $__fish_sysconf_dir/conf.d/*.fish $__fish_vendor_confdirs/*.fish
echo $snippets

from fish-shell.

Booplicate avatar Booplicate commented on May 25, 2024

In normal terminal I can see both configs being loaded:
1
In nvim terminal only one is being loaded:
2
(notice how it loads twice, apparently it's a feature in toggleterm.nvim. In the default nvim terminal it prints from main cfg once, but still no aliases)

from fish-shell.

Booplicate avatar Booplicate commented on May 25, 2024

Thank you for your assistance!

Note: Setting the XDG variables in config.fish basically doesn't really work because it is too late.

I only set them there for nvim since fish was using the desired location already. I now set them on the system level so it's consistent (just in case).

the config snippets are read according to that directory, then your config.fish is read

Which surprised me since if snippets are read from another directory, why config is read from the one I want?

The snippets are $__fish_config_dir/conf.d/*.fish $__fish_sysconf_dir/conf.d/*.fish $__fish_vendor_confdirs/*.fish, you can see what you get there with

That helped debugging the issue:

  1. fish can't use windows/mixed paths (probably a msys2 and cygwin issue). For example set -l snippet $__fish_config_dir/conf.d/*.fish fails with code 124. So does ls C:/Users/User/.config/fish/conf.d/*.fish with message fish: No matches for wildcard. If I use a unix path, it works. Perhaps fish uses similar code to get and execute the snippets and thus can't find any.
  2. So I tried to use unix paths. However the variables would get overwritten to mixed paths once I'm in nvim terminal. It's probably some extra scripts from nvim which I'm not aware of.

I added the following code to config.fish:

for var in XDG_DATA_HOME XDG_CONFIG_HOME XDG_CACHE_HOME
    set -gx $var $(cygpath -u $$var)
end

and it worked because fish is being executed multiple times from nvim before it opens the terminal. Somewhat hacky, I will research for a proper fix later (maybe run a startup script for fish from nvim).

from fish-shell.

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.