diff options
| author | Bozhidar Batsov <bozhidar@batsov.com> | 2018-07-09 22:17:46 +0300 |
|---|---|---|
| committer | Bozhidar Batsov <bozhidar@batsov.com> | 2018-07-09 22:17:46 +0300 |
| commit | 2a8cc3674c4c142d1b028e706df8e84290070f72 (patch) | |
| tree | 0ef9ee3e2b6d676a4ac31411d9c559c29ed2437c | |
| parent | 1c630902c4dbb7779765ed12e44cf341c3539d30 (diff) | |
Align the elements of a list
| -rw-r--r-- | projectile.el | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/projectile.el b/projectile.el index f96f9b5..b482026 100644 --- a/projectile.el +++ b/projectile.el @@ -1762,21 +1762,21 @@ https://github.com/abo-abo/swiper"))) ("cxx" . ("h" "hxx" "ixx")) ("ixx" . ("h" "hxx" "cxx")) ("hxx" . ("h" "ixx" "cxx")) - ("c" . ("h")) - ("m" . ("h")) - ("mm" . ("h")) - ("h" . ("c" "cc" "cpp" "ipp" "hpp" "cxx" "ixx" "hxx" "m" "mm")) - ("cc" . ("h" "hh" "hpp")) - ("hh" . ("cc")) + ("c" . ("h")) + ("m" . ("h")) + ("mm" . ("h")) + ("h" . ("c" "cc" "cpp" "ipp" "hpp" "cxx" "ixx" "hxx" "m" "mm")) + ("cc" . ("h" "hh" "hpp")) + ("hh" . ("cc")) ;; vertex shader and fragment shader extensions in glsl ("vert" . ("frag")) ("frag" . ("vert")) ;; handle files with no extension - (nil . ("lock" "gpg")) + (nil . ("lock" "gpg")) ("lock" . ("")) - ("gpg" . ("")) + ("gpg" . ("")) ) "Alist of extensions for switching to file with the same name, using other extensions based on the extension of current |
