Git Product home page Git Product logo

visual-studio-code-sqr's Introduction

SQR Language Support for Visual Studio Code

This extension provides syntax highlighting and code snippets for the SQR Programming language.

Special thanks to Gary Pullis for creating the Sublime Text definition files upon which this extension was originally based.

Current Features

Syntax highlighting and code snippets. Please visit the Snippets Wiki Page for documentation of the SQR snippet shortuts you can take advantage of through IntelliSense in VSC.

SQR Snippets Demo

Known Issues

  1. Not all built-in SQR functions are included in syntax highlighting.
  2. Need to eventually re-report the issue for inconsistencies in the use of \t in snippets.

Contributions

Please feel free to contribute at our Github Repository

License

This extension is licensed under the MIT License

visual-studio-code-sqr's People

Contributors

coe-jeubanks avatar abasic-csu avatar malvarado1986 avatar

Stargazers

Dan Bilodeau avatar bgateb avatar Zachary Hudock avatar Bryan Alvarez avatar  avatar Mike Ripley avatar Brandon Callifornia avatar Lawerence Schweitz avatar  avatar MH avatar Nathan Crum avatar  avatar  avatar Zach Hudock avatar  avatar JR Bing avatar Papa Jedder avatar  avatar Mathew Welborn avatar Jayanth Kanive avatar Jason avatar  avatar

Watchers

Dan Iverson avatar James Cloos avatar  avatar Nathan Crum avatar  avatar City of Escondido Admin User avatar  avatar  avatar  avatar

visual-studio-code-sqr's Issues

VSCode hangs when opening moderately large SQRs

Since the latest release of Code opening a file with ~2000 LOC causes it to hang for about 6 or 7 seconds. If I disable the extension, Code works fine however. I'm guessing this is probably a regex issue? I'll have a look to see if anything stands out, but my regex fu could do with some work.

In the mean time, is anyone else encountered this with the new version? I'm using the 64bit edition FWIW.

_# causes vsc to lock up

Using # in the file causes VSC to lock up.
Steps to reproduce. Open a test.sqr file,
type "
#"

Issues seems to be a conflict with

{ "name": "keyword.include.SQR",
"match": "(\s)*(#)(?i:include)\s"
},
{ "name": "storage.type.SQR",
"match": "(\s)*(#)(?i:define)\s"
},

this fixed it.
{ "name": "keyword.include.SQR",
"match": "#(?i:include)\b"
},
{ "name": "storage.type.SQR",
"match": "(#)(?i:define)\b"
},

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.