mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 06:28:58 +08:00
Fix for annoying messages when launching on SnowLeopard
Fix for missing .o file in Makefile.in
This commit is contained in:
parent
4afdcf56fc
commit
9d8ae184c9
|
@ -773,7 +773,7 @@ mimedb: $(MIME_OBJS)
|
|||
# Build the set_color program
|
||||
#
|
||||
|
||||
set_color: set_color.o print_help.o common.o color.o
|
||||
set_color: set_color.o print_help.o common.o color.o wutil.o
|
||||
$(CXX) set_color.o print_help.o common.o wutil.o color.o $(LDFLAGS_SET_COLOR) -o $@
|
||||
|
||||
|
||||
|
|
|
@ -31,8 +31,10 @@ function fish_default_key_bindings -d "Default (Emacs-like) key bindings for fis
|
|||
|
||||
bind \e\[H beginning-of-line
|
||||
bind \e\[F end-of-line
|
||||
bind -k home beginning-of-line
|
||||
bind -k end end-of-line
|
||||
|
||||
# OS X SnowLeopard doesn't have these keys. Don't show an annoying error message.
|
||||
bind -k home beginning-of-line 2> /dev/null
|
||||
bind -k end end-of-line 2> /dev/null
|
||||
|
||||
bind \e\eOC nextd-or-forward-word
|
||||
bind \e\eOD prevd-or-backward-word
|
||||
|
|
Loading…
Reference in New Issue
Block a user