diff --git a/_sources/fortls_changes.md.txt b/_sources/fortls_changes.md.txt index a0855722..c999ec92 100644 --- a/_sources/fortls_changes.md.txt +++ b/_sources/fortls_changes.md.txt @@ -149,6 +149,8 @@ - Fixed bug where parser would crash when trying to retrieve an invalid line no. ([#398](https://github.com/fortran-lang/fortls/issues/398)) +- Fixed bug with string quotes not being escaped when looking for parenthesis + ([#250](https://github.com/fortran-lang/fortls/issues/250)) - Fixed end of scope errors raised by trailing semicolon in native parser ([#265](https://github.com/fortran-lang/fortls/issues/265)) - Fixed bug where parent scope for includes in AST could be `None` diff --git a/_static/documentation_options.js b/_static/documentation_options.js index e853f6a7..81b12a10 100644 --- a/_static/documentation_options.js +++ b/_static/documentation_options.js @@ -1,5 +1,5 @@ const DOCUMENTATION_OPTIONS = { - VERSION: '0.1.dev1+gf29b02d', + VERSION: '0.1.dev1+gc8df48b', LANGUAGE: 'en', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/contact.html b/contact.html index 358c0e5c..768f8831 100644 --- a/contact.html +++ b/contact.html @@ -354,7 +354,7 @@

Contact Us + diff --git a/contributing.html b/contributing.html index 205851e6..a0887aed 100644 --- a/contributing.html +++ b/contributing.html @@ -436,7 +436,7 @@

Merging¶ - + diff --git a/editor_integration.html b/editor_integration.html index 9f31ad7e..a5c57bbb 100644 --- a/editor_integration.html +++ b/editor_integration.html @@ -534,7 +534,7 @@

Kakoune - + diff --git a/features.html b/features.html index b4c55e34..68c3ed7c 100644 --- a/features.html +++ b/features.html @@ -520,7 +520,7 @@

All LSP Requests + diff --git a/fortls.html b/fortls.html index 4e24084f..9b57b8fb 100644 --- a/fortls.html +++ b/fortls.html @@ -966,6 +966,14 @@

Submodules-1 +
>>> find_paren_match('nt(sin(0.5))+8+len("ab((c")-3) :: y')
+29
+
+
+
>>> find_paren_match("nt(sin(0.5))+8+len('ab))c')-3) :: y")
+29
+
+
@@ -2613,7 +2621,7 @@

Submodules + diff --git a/fortls.parsers.html b/fortls.parsers.html index 3ae2e6d2..601f896b 100644 --- a/fortls.parsers.html +++ b/fortls.parsers.html @@ -783,7 +783,7 @@

Subpackages + diff --git a/fortls.parsers.internal.html b/fortls.parsers.internal.html index 736bb7df..660bbd52 100644 --- a/fortls.parsers.internal.html +++ b/fortls.parsers.internal.html @@ -2783,7 +2783,7 @@

Submodules + diff --git a/fortls_changes.html b/fortls_changes.html index aedfc692..5747f9f6 100644 --- a/fortls_changes.html +++ b/fortls_changes.html @@ -449,6 +449,8 @@

Fixed