Compare commits

..

2 Commits

Author SHA1 Message Date
831033fded Add python f"" and f'' pairs to smartparens config. 2022-02-06 20:17:35 +01:00
569919fa26 Add pyjamas feed to elfeed. 2022-02-06 20:15:54 +01:00
2 changed files with 5 additions and 0 deletions

View File

@@ -18,6 +18,7 @@
"http://www.reddit.com/r/emacs/.rss" "http://www.reddit.com/r/emacs/.rss"
"http://linuxfr.org/journaux.atom" "http://linuxfr.org/journaux.atom"
"https://xkcd.com/atom.xml" "https://xkcd.com/atom.xml"
"https://pyjamas.live/feed.xml"
))) )))
(provide 'apps/elfeed) (provide 'apps/elfeed)

View File

@@ -118,6 +118,10 @@
(sp-with-modes '(sh-mode markdown-mode gfm-mode rts-mode python-mode cython-mode) (sp-with-modes '(sh-mode markdown-mode gfm-mode rts-mode python-mode cython-mode)
(sp-local-pair "`" nil :unless '(sp-point-before-word-p sp-point-after-word-p sp-point-before-same-p))) (sp-local-pair "`" nil :unless '(sp-point-before-word-p sp-point-after-word-p sp-point-before-same-p)))
(sp-with-modes '(python-mode)
(sp-local-pair "f\"" "\"")
(sp-local-pair "f'" "'"))
(sp-with-modes '(markdown-mode gfm-mode rst-mode) (sp-with-modes '(markdown-mode gfm-mode rst-mode)
(sp-local-pair "*" "*" :wrap "C-*" :skip-match 'user--sp-gfm-skip-asterisk) (sp-local-pair "*" "*" :wrap "C-*" :skip-match 'user--sp-gfm-skip-asterisk)
(sp-local-tag "2" "**" "**") (sp-local-tag "2" "**" "**")