Commit Graph

277 Commits

Author SHA1 Message Date
Carlo Sciolla 4bdb8ebb92 Removed unused code 2016-10-13 23:58:41 +02:00
Carlo Sciolla cdee161b3d Fixed docs 2016-10-10 20:35:06 +02:00
Carlo Sciolla 0aabb908f8 Minor aesthetics 2016-10-10 20:31:11 +02:00
Carlo Sciolla a60290a0a9 Migrate filename to be plantuml-mode 2016-10-10 20:31:11 +02:00
Carlo Sciolla e1c3a06f41 Migrate function names to be again plantuml 2016-10-10 20:31:11 +02:00
Carlo Sciolla b13aa74542 Added deprecation notice 2016-10-10 20:31:11 +02:00
Carlo Sciolla bbbb5c58ae Added preview region functionality 2016-10-10 20:05:27 +02:00
Carlo Sciolla b7be36f6d2 Merging plantuml-mode 2016-10-10 19:42:40 +02:00
Carlo Sciolla ae1cd8eb21 Bumped version number 2016-07-19 09:36:39 +02:00
Carlo Sciolla 3f6e3773f3 Merge pull request #25 from syohex/fix-package
Fix package
2016-07-19 09:33:38 +02:00
Syohei YOSHIDA beb8900b10 Specify minimum Emacs version
This is for using prog-mode and lexical-binding.
2016-07-08 14:09:40 +09:00
Syohei YOSHIDA dca9fa42b6 Add autoload cookie to auto-mode-alist setting 2016-07-08 11:32:08 +09:00
Syohei YOSHIDA 093c1795d2 Fix unused variable name for byte-compile warning 2016-07-08 11:31:06 +09:00
Carlo Sciolla f5ff58bb4f Merge pull request #23 from lucafavatella/version-definition
Update version number in header and `defvar`
2016-06-06 08:16:24 +02:00
Luca Favatella 2b9a998e55 Review version definition
Prefer `defconst` as it is more robust for constants. Refs:

  * https://www.gnu.org/software/emacs/manual/html_mono/elisp.html#index-defconst
  * http://endlessparentheses.com/what-s-a-defconst-and-why-you-should-use-it.html
2016-06-05 17:36:31 +01:00
Luca Favatella f871199960 Refresh version number 2016-06-05 17:36:11 +01:00
Carlo Sciolla b31063125b #20 Added usage documentation 2016-05-07 07:50:43 +02:00
Carlo Sciolla 463aa0d54b Better docs for the C-u prefix magic numbers 2016-03-24 23:25:51 +01:00
Carlo Sciolla 56cd3f393d Prepare for version bump 2016-03-24 22:34:50 +01:00
Carlo Sciolla dc3e32c3ca Minor cosmetics 2016-03-24 22:31:33 +01:00
Carlo Sciolla a42e8b5734 Merge pull request #18 from jmeeks/master
allow puml-preview to open in other window, frame
2016-03-24 22:31:23 +01:00
Carlo Sciolla 2ff075b23c Merge pull request #17 from driftcrow/patch-1
Update puml-mode.el
2016-03-24 22:31:17 +01:00
Jonathan Meeks 4bb8b2a04e allow puml-preview to open in other window, frame 2016-03-21 10:32:17 -05:00
driftcrow 1b1cf79278 Update puml-mode.el
support for Asia language
2016-03-10 20:58:20 +08:00
Carlo Sciolla 966064f371 Merge pull request #13 from leafac/patch-1
Fix `Enable the major mode` for `.plantuml` file extension
2016-01-04 11:18:19 +01:00
Leandro Facchinetti 44af621c43 Fix `Enable the major mode`
From `subr.el`:

    (add-to-list LIST-VAR ELEMENT &optional APPEND COMPARE-FN)
2015-12-28 16:10:38 -05:00
Carlo Sciolla 9d3b5e326d Single line works but only if ended by another quote char 2015-12-12 17:23:02 +01:00
Carlo Sciolla 84ca5f1e8e Multiline works, single line doesn't 2015-12-12 17:18:24 +01:00
Carlo Sciolla 151e0fd9df Trying to integrate comments as per PR #12 2015-12-12 16:45:43 +01:00
Carlo Sciolla 664bc47000 Merge done, new version signalled 2015-12-07 17:43:36 +01:00
Carlo Sciolla 2842aad15a Merging pull request 2015-12-07 17:06:19 +01:00
Carlo Sciolla a20265d5f6 Added troubleshooting docs 2015-12-07 16:56:20 +01:00
Carlo Sciolla c52c085f40 Updated version number 2015-12-07 16:50:56 +01:00
Carlo Sciolla 4ffb080659 Make debug switches interactive 2015-12-07 16:49:21 +01:00
Carlo Sciolla d4f2dd4e8a Added debug capabilities 2015-12-07 16:45:40 +01:00
Carlo Sciolla 31f7b13b11 Removed commented out lines 2015-12-07 16:12:25 +01:00
David Vazquez 82cc6b8fc7 Merge branch 'master' into customizable-output-type 2015-09-26 16:19:20 +02:00
Carlo Sciolla 2300b27217 Merge pull request #8 from davazp/define-derived-mode
Use the recommended macro `define-derived-mode'
2015-09-26 14:30:30 +02:00
David Vazquez 7ff5e2bb3d Fix the output type UTXT
Only set the coding for the output buffer of the process to binary if
the output is an image.
2015-09-26 13:05:00 +02:00
David Vazquez e886aff9c5 Use utxt as default output type if can't display images
for example, if it is in terminal node (-nw)
2015-09-26 12:42:34 +02:00
Carlo Sciolla eab0a728be Updated version variable 2015-09-26 12:40:17 +02:00
David Vazquez 13fc1b1cbe Customizable output type
Define a variable `puml-output-type' that the user can customize per
buffer. It does also define a `puml-set-output-type' command to set the
output type for the current buffer interactively.
2015-09-26 12:39:16 +02:00
David Vazquez c352acb1c2 Merge remote-tracking branch 'origin/define-derived-mode' into customizable-output-type 2015-09-26 12:11:52 +02:00
David Vazquez 6b4b0a957d Use the recommended macro `define-derived-mode'
This macro implements all the conventions for the major modes.
2015-09-26 11:41:33 +02:00
Carlo Sciolla f47a0c559a Prepare for bugfix release 2015-09-26 11:22:45 +02:00
Carlo Sciolla ee1eaeb0ac Merge pull request #7 from davazp/fix-dont-use-equalp
Use eq to compare symbols
2015-09-26 11:20:43 +02:00
David Vazquez dba290a22b Use eq to compare symbols
The equalp function is defined in the 'cl' library, which is not loaded
by default. So I was getting the error

   error in process sentinel: not: Symbol's function definition is void:
   equalp

I replaced it with eq as it is comparing symbols
2015-09-26 11:13:53 +02:00
Carlo Sciolla 3a2e5c486f Better instructions to configure preview 2015-09-26 09:38:59 +02:00
Carlo Sciolla c9969801fb Better instructions to configure preview 2015-09-26 09:38:31 +02:00
Carlo Sciolla 7e4056cf05 Updated the release notes 2015-09-26 09:29:52 +02:00