File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -734,10 +734,10 @@ function bashrc_generate_and_load_environment(){
734
734
source " $( dirname " $( readlink -f " ${BASH_SOURCE[0]} " ) " ) /bashrc-keys"
735
735
source " $BASH_ENV "
736
736
unset be
737
- if type -p rbenv 2> /dev/null ; then
737
+ if type -p rbenv 2> /dev/null 1>&2 ; then
738
738
eval " $( rbenv init -) "
739
739
fi
740
- if type -p pyenv 2> /dev/null ; then
740
+ if type -p pyenv 2> /dev/null 1>&2 ; then
741
741
eval " $( pyenv init -) "
742
742
fi
743
743
}
Original file line number Diff line number Diff line change 5
5
6
6
(.EMACS " ~/rc/emacs-ruby.el %s" " Pascal J. Bourguignon's emacs ruby stuff." )
7
7
8
+ (require 'ruby-mode )
9
+ (require 'inf-ruby )
10
+
11
+ (setf inf-ruby-first-prompt-pattern " irb --> " )
12
+ (setf inf-ruby-prompt-pattern (format inf-ruby-prompt-format " [?>]" " [\] >*\" '/`]" ))
13
+
14
+
8
15
(require 'enh-ruby-mode nil t )
9
16
(autoload 'enh-ruby-mode " enh-ruby-mode" " Major mode for ruby files" t )
10
17
(add-to-list 'auto-mode-alist '(" \\ .rb$" . enh-ruby-mode))
35
42
(require 'textmate nil t )
36
43
37
44
38
- (setf inf-ruby-first-prompt-pattern " irb --> " )
39
- (setf inf-ruby-prompt-pattern (format inf-ruby-prompt-format " [?>]" " [\] >*\" '/`]" ))
40
45
41
46
42
47
; ; Local Variables:
You can’t perform that action at this time.
0 commit comments