-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconstants.go
More file actions
53 lines (46 loc) · 1.71 KB
/
Copy pathconstants.go
File metadata and controls
53 lines (46 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// -----------------------------------------------------------------------------
// CMDX Utilities Suite cmdx/[constants.go]
// (c) balarabe@protonmail.com License: GPLv3
// -----------------------------------------------------------------------------
package main
// FindInFilesDialog _ _
const FindInFilesDialog = `
MRK ---------------------------------------------------------------------------
MRK | FIND IN FILES: (to find multiple strings place them on multiple lines)
MRK ---------------------------------------------------------------------------
MRK ---------------------------------------------------------------------------
MRK | find in path: X:/path/
MRK | subfolders: y
MRK |
MRK | ignore case: y mark in source (prefix):
MRK | whole word: y mark in source (suffix):
MRK |
MRK | show in result:
MRK | path y preceding lines: 0
MRK | filename y following lines: 0
MRK | line number y
MRK | line text y paste results here: n
MRK | WAITING...
MRK ---------------------------------------------------------------------------
`
// ExtraTextFileExts contains additional text file
// extensions not listed in (zr-fs) fs.TextFileExts
var ExtraTextFileExts = []string{
//
// Go module files
"mod",
"sum",
//
// YAML files // TODO: remove after upgrading zr/fs
"yml",
"yaml",
//
// Google Protocol Buffer files
"proto",
}
// NoHelp indicates missing help text.
const NoHelp = ""
// Spaces is a string of all white-space characters,
// which includes spaces, tabs, and newline characters.
const Spaces = " \a\b\f\n\r\t\v"
// end