[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] elpa 0f8baf6 16/23: TikZ: Ignore case when prompting for argument
From: |
Tassilo Horn |
Subject: |
[elpa] elpa 0f8baf6 16/23: TikZ: Ignore case when prompting for argument types. |
Date: |
Wed, 30 Mar 2016 19:08:03 +0000 |
branch: elpa
commit 0f8baf6ab7bd330096b0a9533ca8c23f714c9115
Author: Matthew Leach <address@hidden>
Commit: Matthew Leach <address@hidden>
TikZ: Ignore case when prompting for argument types.
* style/tikz.el (TeX-TikZ-get-arg-type): Let-bind
`completion-ignore-case' to t when prompting the user.
---
style/tikz.el | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/style/tikz.el b/style/tikz.el
index 8447b7b..9e2ff97 100644
--- a/style/tikz.el
+++ b/style/tikz.el
@@ -98,7 +98,8 @@ string \"node[OPTIONS](NAME){TEXT}\"."
"Prompt the user for an argument type.
TYPES is a list of possible types that the user can specify. If
PROMPT is non-nil use that prompt instead."
- (let ((prompt (if prompt
+ (let ((completion-ignore-case t)
+ (prompt (if prompt
prompt
"Next argument type (RET to finish): ")))
(completing-read prompt types nil t)))
- [elpa] elpa updated (df2c08f -> 7573813), Tassilo Horn, 2016/03/30
- [elpa] elpa a8a803c 02/23: Call TeX-after-compilation-finished-functions on warnings, Tassilo Horn, 2016/03/30
- [elpa] elpa ae34515 03/23: Better control for presence of errors, Tassilo Horn, 2016/03/30
- [elpa] elpa 0f8baf6 16/23: TikZ: Ignore case when prompting for argument types.,
Tassilo Horn <=
- [elpa] elpa 4a1728b 15/23: TikZ: Apply suggestions from checkdoc., Tassilo Horn, 2016/03/30
- [elpa] elpa cf4ce35 18/23: TikZ: Add more path connector types., Tassilo Horn, 2016/03/30
- [elpa] elpa f23fbd6 14/23: Fill environment content onley when auto-fill-mode is active, Tassilo Horn, 2016/03/30
- [elpa] elpa eddf3ff 20/23: Fix previous commit, Tassilo Horn, 2016/03/30
- [elpa] elpa 608e874 01/23: Add the beginnings of TikZ support., Tassilo Horn, 2016/03/30
- [elpa] elpa 201ed15 06/23: Fix a misplaced closing parenthesis, Tassilo Horn, 2016/03/30
- [elpa] elpa 1288609 07/23: Add fontification support, Tassilo Horn, 2016/03/30
- [elpa] elpa 00740ed 08/23: TikZ: split out the prompts to TeX-TikZ-arg-node & TeX-TikZ-macro-arg., Tassilo Horn, 2016/03/30
- [elpa] elpa c49b547 17/23: TikZ: Rename 'text' to 'label' to be consistent with TikZ terminology., Tassilo Horn, 2016/03/30
- [elpa] elpa 1cb2678 04/23: Delete redundant code, Tassilo Horn, 2016/03/30