dakrone / es-mode

An Emacs major mode for interacting with Elasticsearch
GNU General Public License v3.0
196 stars 34 forks source link

Allow multiple spaces after HTTP verb #56

Closed drewr closed 7 years ago

drewr commented 7 years ago

Handles cases like:

GET   _search
   ^^^

When intuitively seems like it should work. Change is also reflected in font locking.

drewr commented 7 years ago

Incidentally, the \s- syntax for whitespace matching doesn't seem to work as documented, at least with Emacs 25.2.1. [:space:] works more reliably for me so I used that.

dakrone commented 7 years ago

Thanks again @drewr!