Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename Docs to Auxiliary | Brad King | 2013-10-15 | 1 | -357/+0 |
| | | | | | The directory contains auxiliary support files for integration with other tools, not documentation. | ||||
* | cmake-mode.el: add local keybindings | Tom Schutter | 2012-09-21 | 1 | -1/+17 |
| | | | | Signed-off-by: Eric NOULARD <eric.noulard@gmail.com> | ||||
* | cmake-mode.el: Use more readable regex and case-fold-search | Tom Schutter | 2012-09-21 | 1 | -2/+3 |
| | | | | | | This reimplement ab9824e. Signed-off-by: Eric NOULARD <eric.noulard@gmail.com> | ||||
* | Remove trailing whitespace from most CMake and C/C++ code | Kitware Robot | 2012-08-13 | 1 | -6/+6 |
| | | | | | | | | | | | | | | | | | Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//' | ||||
* | cmake-mode.el: Make indentation case-insensitive (#12995) | Christopher Sean Morrison | 2012-02-24 | 1 | -2/+2 |
| | | | | | | Convert the block open and close matching expressions to be explicitly insensitive to case. This way it will not matter whether Emacs is sensitive to case when evaluating 'string-match'. | ||||
* | cmake-mode.el: Indent after multiline argument (#12908) | Brad King | 2012-01-23 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | After a multiline argument ending in a non-empty line e.g. if(TEST) set(VAR " ...") unset(VAR) endif() we previously failed to indent following lines like the "unset". Use cmake-line-starts-inside-string to keep walking back through multiline arguments until we find an indented line. Suggested-by: Christopher Sean Morrison <brlcad@mac.com> | ||||
* | Add cmake-help-command function. | Bill Hoffman | 2009-09-30 | 1 | -0/+84 |
| | |||||
* | Convert CMake to OSI-approved BSD License | Brad King | 2009-09-28 | 1 | -9/+7 |
| | | | | | | | This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range. | ||||
* | BUG: Fix cmake-mode.el indentation cursor motion | Brad King | 2009-02-26 | 1 | -29/+45 |
| | | | | | This makes cursor motion in the indent function consistent with emacs conventions. Patch from Mike Wittman. See issue #8625. | ||||
* | ENH: add simple function to convert all CMake commands to lowercase | Sebastien Barre | 2008-03-11 | 1 | -0/+20 |
| | |||||
* | ENH: Enable indentation of FUNCTION/ENDFUNCTION blocks in emacs. | Brad King | 2008-01-02 | 1 | -2/+2 |
| | |||||
* | ENH: Adding elseif indentation. See bug#3781. | Brad King | 2006-09-23 | 1 | -2/+2 |
| | |||||
* | BUG: In example .emacs code use \' for end-of-string instead of $ for ↵ | Brad King | 2006-04-26 | 1 | -2/+2 |
| | | | | end-of-line. | ||||
* | BUG: Mode should only be used if CMakeLists.txt is at the end of the buffer ↵ | Brad King | 2006-04-26 | 1 | -1/+1 |
| | | | | name. | ||||
* | BUG: Tabs around a function name are allowed. | Brad King | 2006-04-26 | 1 | -2/+2 |
| | |||||
* | ENH: Using suggestion from Stuart Herring to avoid needing a list of command ↵ | Brad King | 2006-04-26 | 1 | -27/+4 |
| | | | | names in the highlighting table. | ||||
* | ENH: Cleaned-up mode in preparation for inclusion in emacs upstream. | Brad King | 2006-04-25 | 1 | -37/+89 |
| | |||||
* | ENH: Added highlighting for LIST command. | Brad King | 2006-02-10 | 1 | -2/+2 |
| | |||||
* | ENH: Added INSTALL command as a placeholder for a future generic install ↵ | Brad King | 2006-02-10 | 1 | -2/+2 |
| | | | | specification interface. Currently it supports only a SCRIPT option specifying a script to run during the install stage. | ||||
* | ENH: Adding new EXECUTE_PROCESS command that interfaces to KWSys Process ↵ | Brad King | 2006-02-03 | 1 | -2/+3 |
| | | | | Execution. | ||||
* | ENH: missing get_directory_property command | Ken Martin | 2005-09-13 | 1 | -2/+2 |
| | |||||
* | ENH: added while command | Ken Martin | 2005-06-30 | 1 | -4/+4 |
| | |||||
* | ENH: added while command | Ken Martin | 2005-06-30 | 1 | -2/+2 |
| | |||||
* | ENH: updated emacs mode to include lowercase commands and missing command ↵ | Ken Martin | 2005-06-20 | 1 | -3/+2 |
| | | | | ENDMACRO | ||||
* | ENH: Experimenting with auto-dated copyright. | Brad King | 2005-06-08 | 1 | -4/+1 |
| | |||||
* | ENH: updated commands | Ken Martin | 2005-06-02 | 1 | -2/+2 |
| | |||||
* | ENH: updated to remove ABSTRACT_FILES and add ADD_SUBDIRECTORY | Ken Martin | 2005-06-02 | 1 | -2/+3 |
| | |||||
* | BUG: Only count block open tokens if they are followed by an open paren. | Brad King | 2004-08-26 | 1 | -2/+5 |
| | |||||
* | BUG: Fixed parsing of unquoted arguments to allow double-quotes within the ↵ | Brad King | 2004-06-18 | 1 | -1/+1 |
| | | | | argument. | ||||
* | BUG: Fixed identification of ( and ) tokens to avoid finding them in string ↵ | Brad King | 2004-02-19 | 1 | -2/+2 |
| | | | | literals. | ||||
* | ENH: New indentation implementation to support multi-line strings. | Brad King | 2003-12-05 | 1 | -64/+88 |
| | |||||
* | STYLE: Removed trailing whitespace. | Brad King | 2003-12-04 | 1 | -14/+14 |
| | |||||
* | ENH: Added comment-region support. | Brad King | 2003-06-30 | 1 | -1/+4 |
| | |||||
* | BUG: fix highlight for comments in multiple buffers | Bill Hoffman | 2003-06-20 | 1 | -15/+10 |
| | |||||
* | add a comment | Bill Hoffman | 2003-06-19 | 1 | -0/+4 |
| | |||||
* | Added copyright. | Brad King | 2003-06-19 | 1 | -1/+16 |
| | |||||
* | Minor tweaks for anal cases of indentation. | Brad King | 2003-06-19 | 1 | -3/+4 |
| | |||||
* | BUG: Don't open a block if a command starts with IF in its name. | Brad King | 2003-06-19 | 1 | -4/+4 |
| | |||||
* | fix to use function-name | Ken Martin | 2003-06-19 | 1 | -2/+2 |
| | |||||
* | Fixed slow regex for indentation. | Brad King | 2003-06-19 | 1 | -23/+34 |
| | |||||
* | ENH: Wrote more robust regular expressions for indenting. | Brad King | 2003-06-19 | 1 | -2/+12 |
| | |||||
* | emacs mode | Ken Martin | 2003-06-19 | 1 | -0/+128 |