blob: 23db48700eece025464792fd1beb4a755d86ab1f [file] [log] [blame]
Bram Moolenaarbc2eada2017-01-02 21:27:47 +01001*pi_logipat.txt* Logical Patterns Jun 22, 2015
Bram Moolenaare2db6c92015-06-19 18:48:41 +02002
3Author: Charles E. Campbell <NdrOchip@ScampbellPfamily.AbizM>
Bram Moolenaar03413f42016-04-12 21:07:15 +02004Copyright: (c) 2004-2015 by Charles E. Campbell *logiPat-copyright*
Bram Moolenaare2db6c92015-06-19 18:48:41 +02005 The VIM LICENSE applies to LogiPat.vim and LogiPat.txt
6 (see |copyright|) except use "LogiPat" instead of "Vim"
7 No warranty, express or implied. Use At-Your-Own-Risk.
8
9==============================================================================
Bram Moolenaar03413f42016-04-12 21:07:15 +0200101. Contents *logiPat* *logiPat-contents*
Bram Moolenaare2db6c92015-06-19 18:48:41 +020011
Bram Moolenaar03413f42016-04-12 21:07:15 +020012 1. Contents.................: |logiPat-contents|
13 2. LogiPat Manual...........: |logiPat-manual|
14 3. LogiPat Examples.........: |logiPat-examples|
15 4. Caveat...................: |logiPat-caveat|
16 5. LogiPat History..........: |logiPat-history|
17
Bram Moolenaare2db6c92015-06-19 18:48:41 +020018
19==============================================================================
Bram Moolenaar03413f42016-04-12 21:07:15 +0200202. LogiPat Manual *logiPat-manual* *logiPat-man*
Bram Moolenaare2db6c92015-06-19 18:48:41 +020021
Bram Moolenaar03413f42016-04-12 21:07:15 +020022 *logiPat-arg* *logiPat-input* *logiPat-pattern* *logiPat-operators*
Bram Moolenaare2db6c92015-06-19 18:48:41 +020023 Boolean logic patterns are composed of
24
25 operators ! = not
26 | = logical-or
27 & = logical-and
28 grouping ( ... )
29 patterns "pattern"
30
31 :LogiPat {boolean-logic pattern} *:LogiPat*
32 :LogiPat is a command which takes a boolean-logic
Bram Moolenaar03413f42016-04-12 21:07:15 +020033 argument (|logiPat-arg|).
Bram Moolenaare2db6c92015-06-19 18:48:41 +020034
35 :LP {boolean-logic pattern} *:LP*
36 :LP is a shorthand command version of :LogiPat
Bram Moolenaare2db6c92015-06-19 18:48:41 +020037
Bram Moolenaar03413f42016-04-12 21:07:15 +020038 :LPE {boolean-logic pattern} *:LPE*
Bram Moolenaare2db6c92015-06-19 18:48:41 +020039 No search is done, but the conversion from the
40 boolean logic pattern to the regular expression
41 is performed and echoed onto the display.
42
43 :LogiPatFlags {search flags} *LogiPat-flags*
Bram Moolenaare2db6c92015-06-19 18:48:41 +020044 LogiPat uses the |search()| command. The flags
45 passed to that call to search() may be specified
46 by the :LogiPatFlags command.
47
48 :LPF {search flags} *:LPF*
49 :LPF is a shorthand version of :LogiPatFlags.
50
51 :let pat=LogiPat({boolean-logic pattern}) *LogiPat()*
52 If one calls LogiPat() directly, no search
53 is done, but the transformation from the boolean
54 logic pattern into a regular expression pattern
55 is performed and returned.
56
57 To get a " inside a pattern, as opposed to having it delimit
58 the pattern, double it.
59
Bram Moolenaar03413f42016-04-12 21:07:15 +020060
Bram Moolenaare2db6c92015-06-19 18:48:41 +020061==============================================================================
Bram Moolenaar03413f42016-04-12 21:07:15 +0200623. LogiPat Examples *logiPat-examples*
Bram Moolenaare2db6c92015-06-19 18:48:41 +020063
64 LogiPat takes Boolean logic arguments and produces a regular
65 expression which implements the choices. A series of examples
66 follows:
67>
68 :LogiPat "abc"
69< will search for lines containing the string :abc:
70>
71 :LogiPat "ab""cd"
72< will search for lines containing the string :ab"c:
73>
74 :LogiPat !"abc"
75< will search for lines which don't contain the string :abc:
76>
77 :LogiPat "abc"|"def"
78< will search for lines which contain either the string
79 :abc: or the string :def:
80>
81 :LogiPat !("abc"|"def")
82< will search for lines which don't contain either
83 of the strings :abc: or :def:
84>
85 :LogiPat "abc"&"def"
86< will search for lines which contain both of the strings
87 :abc: and :def:
88>
89 :let pat= LogiPat('!"abc"')
90< will return the regular expression which will match
91 all lines not containing :abc: . The double quotes
92 are needed to pass normal patterns to LogiPat, and
93 differentiate such patterns from boolean logic
94 operators.
95
96
97==============================================================================
Bram Moolenaar03413f42016-04-12 21:07:15 +0200984. Caveat *logiPat-caveat*
Bram Moolenaare2db6c92015-06-19 18:48:41 +020099
100 The "not" operator may be fragile; ie. it may not always play well
101 with the & (logical-and) and | (logical-or) operators. Please try out
102 your patterns, possibly with :set hls, to insure that what is matching
103 is what you want.
104
Bram Moolenaare2db6c92015-06-19 18:48:41 +0200105
Bram Moolenaar03413f42016-04-12 21:07:15 +0200106==============================================================================
Bram Moolenaar2ed639a2019-12-09 23:11:18 +01001075. LogiPat History *logiPat-history*
Bram Moolenaar03413f42016-04-12 21:07:15 +0200108
109 v4 Jun 22, 2015 * LogiPat has been picked up by Bram M for standard
110 plugin distribution; hence the name change
Bram Moolenaare2db6c92015-06-19 18:48:41 +0200111 v3 Sep 25, 2006 * LP_Or() fixed; it now encapsulates its output
112 in \%(...\) parentheses
Bram Moolenaar03413f42016-04-12 21:07:15 +0200113 Dec 12, 2011 * |:LPE| added
Bram Moolenaare2db6c92015-06-19 18:48:41 +0200114 * "" is mapped to a single " and left inside patterns
115 v2 May 31, 2005 * LPF and LogiPatFlags commands weren't working
116 v1 May 23, 2005 * initial release
117
Bram Moolenaar03413f42016-04-12 21:07:15 +0200118
Bram Moolenaare2db6c92015-06-19 18:48:41 +0200119==============================================================================
Bram Moolenaar91f84f62018-07-29 15:07:52 +0200120vim:tw=78:ts=8:noet:ft=help