mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
Add some const, fix spaces
This commit is contained in:
parent
03e36bda72
commit
fd15d30987
2 changed files with 5 additions and 5 deletions
|
@ -3576,10 +3576,10 @@ const wchar_t *reader_readline(void)
|
|||
/* Make sure we have two tokens */
|
||||
if (prev_begin < prev_end && tok_begin < tok_end && tok_begin > prev_begin)
|
||||
{
|
||||
wcstring prev(prev_begin, prev_end - prev_begin);
|
||||
wcstring sep(prev_end, tok_begin - prev_end);
|
||||
wcstring tok(tok_begin, tok_end - tok_begin);
|
||||
wcstring trail(tok_end, &buff[len] - tok_end);
|
||||
const wcstring prev(prev_begin, prev_end - prev_begin);
|
||||
const wcstring sep(prev_end, tok_begin - prev_end);
|
||||
const wcstring tok(tok_begin, tok_end - tok_begin);
|
||||
const wcstring trail(tok_end, &buff[len] - tok_end);
|
||||
|
||||
/* Compose new command line with swapped tokens */
|
||||
wcstring new_buff(buff, prev_begin - buff);
|
||||
|
|
|
@ -68,7 +68,7 @@ function fish_default_key_bindings -d "Default (Emacs-like) key bindings for fis
|
|||
bind \cf forward-char
|
||||
bind \cb backward-char
|
||||
bind \ct transpose-chars
|
||||
bind \et transpose-words
|
||||
bind \et transpose-words
|
||||
bind \e\x7f backward-kill-word
|
||||
bind \eb backward-word
|
||||
bind \ef forward-word
|
||||
|
|
Loading…
Reference in a new issue