| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
| |
By default, Emacs packages such as undo-tree-mode seem to be dependent
on windows to display the visualization.
The first basic step would be to
`(setq pop-up-frames t)`
so that display-buffer always makes a new frame.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Use the option package-archive-priorities which was made for this
very purpose. To prefer MELPA Stable over MELPA.
The higher the number, the higher the priority of a package archive.
For any package that exists in multiple archives Emacs' package manager
picks the package from the archive with the highest priority,
and ignores packages in other archives, even if the version number
is higher.
If the package exists in two archives of the same priority,
the higher version number wins, and ultimately
I think the order in package-archives.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- off-p
- shrink-path-dirs
- neo-buffer--insert-root-entry
Fix functions are not known to be defined
- shrink-root-entry
- projectile-project-root
FS #2
|
|
|
|
| |
FS #2
|
|
|
|
|
|
| |
enable-smerge-maybe
FS #2
|
|
|
|
| |
FS #2
|
|
|
|
| |
FS #2
|
|
|
|
| |
FS #2
|
| |
|
|
|
|
| |
FS #4 #2
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
Working in PHP languages with HTML is a daily task.
In the first instance I tried to combine its syntax with multi-web-mode but it consumed a lot of resources.
In the second instance I made the language reader using mmm-mode, reading php-mode in web mode.
However this has not been enough because the color problems between modes produce bugs.
Now only the web-mode for PHP works, and I have managed to activate PHP flycheck for web-mode.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
thing (using their values).
The value of the sexp you passed as its second arg is the symbol delete-trailing-whitespace,
because the arg to when is a non-nil list (because you quoted it). So the when condition is always true.
And you never invoke function delete-trailing-whitespace; you just return the symbol that names that function.
|
|
|
|
|
| |
- Remove whitespace, except on diff-mode
- Improve syntax undo-tree-mode
|
|
|
|
|
|
|
|
|
|
|
|
| |
Note:
You can find what face is applied to text a number of ways.
If you can get your cursor on the text.
You can use M-x describe-face which will give you a default option of the current face.
Or you can use M-x describe-char which will tell you what face is applied.
You can customize faces through the customize feature or with elisp.
If you can't get your cursor on the face, try finding the face using customize-group,
list-faces-display or by reading the packages code.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Note: remember that working with PHP and combined HTML isn't a best practice
|
| |
|
| |
|
|
|
|
|
| |
it's only enabled in the extensions djhtml, html, tpl
see init-web-mode.el
|
|
|
|
|
|
|
| |
The change is reversed.
This is done because it isn't best practice to mix PHP with HTML :(
This reverts commit 0479eaa621096911f81f11d46c5e6f54d192b1ec.
|
| |
|
|
|
|
|
|
| |
when this default mode is used in files of more than 15000 lines of code
it freeze!, is better to look at the file without the guidelines
and then activate this mode.
|