Skip to content

Commit

Permalink
Update version, README
Browse files Browse the repository at this point in the history
  • Loading branch information
billthefarmer committed Apr 26, 2019
1 parent 55c2711 commit 57e72cb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -85,9 +85,9 @@ no markdown the result will be the same text.

### Highlight syntax
If the current open file is a C, C++, Objective C, Go, Java,
Javascript, Python, Swift, CSS, HTML or Markdown file, the keywords,
classes comments, strings, etc will be highlighted. See [Syntax
Highlighting](Syntax.md).
Javascript, Python, Shell script, Swift, CSS, HTML or Markdown file,
the keywords, classes comments, strings, etc will be highlighted. See
[Syntax Highlighting](Syntax.md).

### Extended selection
If the file being edited is not a plain text file, selections created
Expand Down
11 changes: 6 additions & 5 deletions Syntax.md
Expand Up @@ -3,7 +3,7 @@
## Selection
The type of highlighting is selected by file extension. Files with
`.c`, `.cc`, `.c++`, `.cxx`, `.m`, `.h`, `.go`, `.js`, `.java`, `.py`,
`.swift` extensions will be highlighted with 'C' style
`.sh`, `.swift` extensions will be highlighted with 'C' style
highlighting. Files with `.htm`, `.html` extensions will be
highlighted as HTML. Files with `.cs`, `.css` extensions will be
highlighted as CSS. Files with `.md` extensions will be highlighted as
Expand All @@ -18,10 +18,11 @@ Highlighting][1].

### C type
Keywords and types are matched from lists of C/C++/Objective
C/Go/Java/Javascript/Python/Swift keywords and types. Classes are
capitalised words. Constants are all caps words. Strings are in double
quotes. Single quotes are ignored because apostrophes break the
algorithm. Both `/* */` and `// ` C style comments are recognised.
C/Go/Java/Javascript/Python/Shell/Swift keywords and types. Classes
are capitalised words. Constants are all caps words. Strings are in
double quotes. Single quotes are ignored because apostrophes break the
algorithm. Both `/* */` and `// ` C style comments and `# ` Shell
script style comments are recognised.

### HTML
HTML keywords are matched from a list. Double quoted arguments are
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Expand Up @@ -26,8 +26,8 @@ android {
applicationId "org.billthefarmer.editor"
minSdkVersion 14
targetSdkVersion 28
versionName "1.33"
versionCode 133
versionName "1.34"
versionCode 134

buildConfigField "long", "BUILT", System.currentTimeMillis() + "L"
}
Expand Down

0 comments on commit 57e72cb

Please sign in to comment.