summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'init.el')
-rw-r--r--init.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/init.el b/init.el
index 63d6815..9848cd1 100644
--- a/init.el
+++ b/init.el
@@ -21,7 +21,6 @@
;;; Code:
(require 'cl-lib)
-(require 's)
(require 'bind-key)
(require 'use-package)
@@ -1316,8 +1315,10 @@
(defun km/yas-with-comment (str)
(concat comment-start
- (unless (s-ends-with? " " comment-start) " ")
- str comment-end))
+ (and (not (string-suffix-p " " comment-start))
+ " ")
+ str
+ comment-end))
(defvar km/personal-snippets
(file-name-as-directory (expand-file-name "psnippets"