mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 05:43:11 +00:00
a6227f6c3a
As part of putting the `bind` command code into its own module refactor how it parses its flags.
11 lines
281 B
C++
11 lines
281 B
C++
// Prototypes for functions for executing builtin_bind functions.
|
|
#ifndef FISH_BUILTIN_BIND_H
|
|
#define FISH_BUILTIN_BIND_H
|
|
|
|
#define DEFAULT_BIND_MODE L"default"
|
|
|
|
class parser_t;
|
|
struct io_streams_t;
|
|
|
|
int builtin_bind(parser_t &parser, io_streams_t &streams, wchar_t **argv);
|
|
#endif
|