Replies: 2 comments 1 reply
-
i guess you could execute it at start and then cache it, and then run it again when you detect file changes (maybe |
Beta Was this translation helpful? Give feedback.
-
More Context about this DiscussionNote Having less
|
Beta Was this translation helpful? Give feedback.
-
👇 brainstorming ideas to support expansions of fish autoloaded variables
With the PR #41, we support
node.process
environment variable expansions in fish. This does not include fish's autoloaded environment variables like:echo $fish_complete_path
echo $fish_function_path
echo $__fish_config_dir
Important
Shown in test file test-data/fileOperations.test.ts:
Check the commented out test, for fish specific autoloaded functions that are executed through fish's environment variables:
echo $fish_function_path
Supporting the behavior described, would likely build on the solution here. Expand environment variables when checking file strings #40 & feat: added expand environment variables to SyncFileHelper @PeterCardenas #41
I am particularly unsure about how to provide a general solution that handles all of the autoloaded cases.
more info on this topic
what this feature would allow
Beta Was this translation helpful? Give feedback.
All reactions