summaryrefslogtreecommitdiffstats
path: root/Auxiliary
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'emacs-mode-fix-word-at-point'Brad King2015-01-201-0/+1
|\ | | | | | | | | 3a147e1b cmake-mode.el: Re-add explicit call to require thingatpt
| * cmake-mode.el: Re-add explicit call to require thingatptPeter Vasil2015-01-191-0/+1
| | | | | | | | | | | | Usually it is not needed to call '(require 'thingatpt')' explicitly because the function 'symbol-at-point' is in autoloaded but to be sure to have the function loaded in every case, require thingatpt.
* | Merge topic 'fix-cmake-org-links'Brad King2015-01-192-2/+2
|\ \ | |/ |/| | | | | 91fbcda2 Help: Update cmake.org links to avoid redirects
| * Help: Update cmake.org links to avoid redirectsWilliam Lynch2015-01-162-2/+2
| | | | | | | | Some links to cmake.org now redirect, so link to the new pages directly.
* | cmake-mode.el: Fix extracting keyword at point in cmake-helpPeter Vasil2015-01-191-3/+7
|/ | | | | | | | Since commit v3.1.0-rc2~1^2~1 (cmake-mode.el: syntax of '_' should be treated as symbol, 2014-11-12) the 'word-at-point' function does not extract the whole keyword anymore if it contains an '_', because 'forward-word' stops at '_'. Use 'symbol-at-point' to extract a whole keyword even if there is an '_'.
* cmake-mode.el: syntax of '_' should be treated as symbolSyohei YOSHIDA2014-11-121-2/+1
| | | | | | | Word commands, such as foward-word(M-f), backward-kill-word(M-backspace), don't work well like other major-modes if syntax of '_' is treated as "word". Tested-by: Guillaume Papin <guillaume.papin@parrot.com>
* Merge topic 'bash-complete-ctest-labels'Brad King2014-09-041-2/+6
|\ | | | | | | | | 2603e128 bash-completion: Complete 'ctest' label names
| * bash-completion: Complete 'ctest' label namesSylvain Joubert2014-09-031-2/+6
| |
* | cmake-syntax.vim: Update the command listLukáš Lalinský2014-09-041-2/+2
|/
* cmake-mode.el: Add help for variables/properties/complete. Factorize.Philipp Möller2014-02-131-47/+81
|
* cmake-mode.el: Add the ability to retrieve module help.Philipp Möller2014-02-131-0/+31
|
* cmake-mode.el: Add auto-completion to cmake-help-commandPhilipp Möller2014-01-291-8/+19
|
* cmake-mode.el: Clean up cmake-command-run and add buffername argumentPhilipp Möller2014-01-291-30/+13
|
* cmake-mode.el: Replace 'setq' with 'let' or inliningPhilipp Möller2014-01-281-22/+23
|
* cmake-mode.el: Don't assign to free variable save-pointPhilipp Möller2014-01-281-2/+0
| | | | | | | | | Drop use of the free variable from unscreamify-cmake-buffer. The proper way to do this would be defvar or let, but it is more sensible to drop the feature completely: replace-match will shift the point and the saved-point will be invalid. More careful coding could avoid this, but seems overkill.
* cmake-mode.el: Avoid using beginning-of-bufferPhilipp Möller2014-01-281-1/+1
| | | | | This should not be used from lisp programs. Use the replacement suggested by the doc: (goto-char (point-min))
* cmake-mode.el: Add autoload cookiesYasuyuki Oka2014-01-021-4/+9
|
* cmake-mode.el: Move header line to the top of fileYasuyuki Oka2014-01-021-1/+2
|
* cmake-mode.el: drop reserved keybindings (#14576)Brad King2013-11-181-17/+1
| | | | | | | | | | | | The keybindings added by commit 301e67e3 (cmake-mode.el: add local keybindings, 2012-09-20) overlap the reserved C-c space: http://www.gnu.org/software/emacs/manual/html_node/elisp/Key-Binding-Conventions.html Revert the commit to drop them. Reported-by: Paul Smith <paul@mad-scientist.net> Reviewed-by: Eric NOULARD <eric.noulard@gmail.com>
* Move cmake.m4 from Utilities to AuxiliaryBrad King2013-10-152-0/+54
| | | | | The latter fits more consistently with other third party integration files.
* Rename Docs to AuxiliaryBrad King2013-10-159-0/+864
The directory contains auxiliary support files for integration with other tools, not documentation.