Skip to content

Commit

Permalink
Merge pull request senny#159 from tonini/topic/run_emacs_in_terminal
Browse files Browse the repository at this point in the history
make emacs runnable in the terminal
  • Loading branch information
senny committed Mar 6, 2013
2 parents 3138b98 + c4f78f1 commit 5a019c2
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions bundles/accessibility/bundle.el
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,15 @@
(cabbage-vendor 'idle-highlight-mode)
(cabbage-vendor 'popwin)

(when window-system
(setq frame-title-format '(buffer-file-name "%f" ("%b")))
(tooltip-mode -1)
(mouse-wheel-mode t))
(if window-system
(progn
(setq frame-title-format '(buffer-file-name "%f" ("%b")))
(tooltip-mode -1)
(mouse-wheel-mode t)
(scroll-bar-mode -1))
(menu-bar-mode -1))

(tool-bar-mode -1)

(delete-selection-mode 1)
(transient-mark-mode 1)
Expand All @@ -25,9 +30,6 @@
(idle-highlight-mode 1)
(column-number-mode 1)

(scroll-bar-mode -1)
(tool-bar-mode -1)

(setq use-dialog-box nil
visible-bell t
echo-keystrokes 0.1
Expand Down

0 comments on commit 5a019c2

Please sign in to comment.