How to fix pdb in Aquamacs on Mac OS X?
By : Craig Moore
Date : March 29 2020, 07:55 AM
seems to work fine Same issue (Current directory is ...) to me with emacs 23.2 (9). As you mentioned, it is caused by a CR/LF ending and can be fixed by setting the gud-pdb-marker-regexp. I added the CR (\r) to the gud-pdb-marker-regexp. May you want to add the following line to your .emacs file and give it a try. code :
(setq gud-pdb-marker-regexp "^> \\([-axx-zA-Z0-9_/.:\\]*\\|<string>\\)(\\([0-9]+\\))\\([a-zA-Z0-9_]*\\|\\?\\|<module>\\)()\\(->[^\n\r]*\\)?[\n\r]")
|
Installing ECB for Aquamacs on OSX Mavericks
By : Muhammad Abdullah
Date : March 29 2020, 07:55 AM
will help you You shall better rely on el-get to install it. Here is my personnal config to make it works: code :
;; =========== EL-Get =============
;; See https://github.com/dimitri/el-get
(add-to-list 'load-path "~/.emacs.d/vendor/el-get")
(unless (require 'el-get nil 'noerror)
(with-current-buffer
(url-retrieve-synchronously
"https://raw.github.com/dimitri/el-get/master/el-get-install.el")
(let (el-get-master-branch)
(goto-char (point-max))
(eval-print-last-sexp))))
(require 'el-get)
(require 'el-get-status)
(setq el-get-byte-compile nil)
;; Load the local recipes
(add-to-list 'el-get-recipe-path "~/.emacs.d/el-get/recipes")
;; (setq el-get-sources '(cedet
;; ))
(setq el-get-sources
'((:name ecb
:type git
:url "https://github.com/alexott/ecb.git"
:load "ecb.el"
:compile ("ecb.el"))
))
(setq my-packages
(append '(el-get)
(mapcar 'el-get-source-name el-get-sources)))
(el-get 'sync my-packages)
|
Installing Prolog Mode to Aquamacs on OS X 10.10
By : user2613538
Date : March 29 2020, 07:55 AM
will help you OK's the instructions, for an Emacs>=24.1: Read these instructions carefully to the end. Get some ice-cream, to relax you, so you can better focus. Do nothing. Enjoy the result of your hard work. code :
2011-01-11 Stefan Bruda <stefan@bruda.ca>
* progmodes/prolog.el: Replace by a whole new file.
|
Magit: Is there a way I can toggle --ignore-all-space option for the default magit-status buffer?
By : user3505087
Date : March 29 2020, 07:55 AM
fixed the issue. Will look into that further In magit-status, enter the diff mode by pressing d like you've done. Make your -w change. Then press C-x to see that there is an extended magit menu with more available items. You'll then see that C-s is a means to Save the settings you've made (e.g., --ignore-all-space) for future sessions.
|
Spacemacs Magit mode magit-refresh
By : Ramesh Shirsath
Date : March 29 2020, 07:55 AM
To fix this issue If you use the latest develop branch and the keybinding is gr for magit-refresh.
|