2015-06-06 06:40:33 -04:00
|
|
|
;;; core-os-linux.el --- Debian-specific settings
|
|
|
|
|
2016-09-23 16:09:19 +02:00
|
|
|
;; Treat clipboard input as UTF-8 string first; compound text next, etc.
|
|
|
|
(setq x-select-request-type '(UTF8_STRING COMPOUND_TEXT TEXT STRING))
|
|
|
|
|
2016-05-20 22:37:30 -04:00
|
|
|
(defun doom-open-with (&optional app-name path)
|
2015-06-06 06:40:33 -04:00
|
|
|
(interactive)
|
|
|
|
(error "Not yet implemented"))
|
|
|
|
|
2016-04-23 22:08:46 -04:00
|
|
|
(defun def-docset! (&rest _)
|
2016-02-20 15:30:30 -05:00
|
|
|
(message "No docset function defined!"))
|
|
|
|
|
2015-06-06 06:40:33 -04:00
|
|
|
(provide 'core-os-linux)
|
|
|
|
;;; core-os-linux.el ends here
|