diff options
| author | Maxime Coste <mawww@kakoune.org> | 2023-05-04 12:49:50 +1000 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2023-05-04 12:49:50 +1000 |
| commit | 04780b235b359daeb780ebf2ea15ae23006f598f (patch) | |
| tree | 31a3982581cabe1fa4db6c5471c3979f14e2f592 /src/command_manager.hh | |
| parent | a4918f934ceb8c36ab398c0c973174ac17fc8600 (diff) | |
Add support for recursive expansions with %exp{...}
%exp{...} just expands its content the same way double quoted strings
do, but using a named expansion type makes it possible to use the
more quoting mechanism to avoid quoting hell.
Diffstat (limited to 'src/command_manager.hh')
| -rw-r--r-- | src/command_manager.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command_manager.hh b/src/command_manager.hh index 503e1977..8804b5b2 100644 --- a/src/command_manager.hh +++ b/src/command_manager.hh @@ -45,7 +45,7 @@ struct Token { Raw, RawQuoted, - RawEval, + Expand, ShellExpand, RegisterExpand, OptionExpand, |
