Skip to content

Commit

Permalink
[keybinding] Close buffer with Ctrl-F4
Browse files Browse the repository at this point in the history
  • Loading branch information
manandbytes committed Aug 26, 2016
1 parent 3c95f5d commit 1e2e1da
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .emacs.d/emacs.org
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,11 @@ Use Helm to switch between buffers:
(el-get-bundle helm
(global-set-key (kbd "C-x b") 'helm-buffers-list))
#+END_SRC
** Close buffer with =Ctrl-F4=
#+BEGIN_SRC emacs-lisp
(global-unset-key (kbd "C-x k"))
(global-set-key (kbd "<C-f4>") 'kill-buffer)
#+END_SRC
* Networking
** TODO Check for network connectivity
To check the network connectivity state, get =Connectivity= property of [[https://developer.gnome.org/NetworkManager/unstable/spec.html#org.freedesktop.NetworkManager][org.freedesktop.NetworkManager]] D-Bus interface. It returns [[https://developer.gnome.org/NetworkManager/unstable/spec.html#type-NM_CONNECTIVITY][NM_CONNECTIVITY]] enumeration:
Expand Down

0 comments on commit 1e2e1da

Please sign in to comment.