Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Various improvements and bugfix to allow editing files with minified sections. #35

Open
wants to merge 8 commits into
base: master
Choose a base branch
from

Commits on Oct 17, 2014

  1. [compat] Missing fs.existsSync on node v0.6.12

       Patch fs to get missing existsSync.
    init-js committed Oct 17, 2014
    Configuration menu
    Copy the full SHA
    546d983 View commit details
    Browse the repository at this point in the history
  2. Support for multiple jshint-mode servers running in parallel (one per…

    … port)
    
      Allows multiple emacs programs to be open and benefit from jshint-mode
      at the same time. A server is started on the lowest unused port in the
      (configurable) range 3003 to 3100.
    
      The server gets a new argument --lastport INT. The flymake-hook filters
      stdout for the "Server started" message and extracts the port from there.
    init-js committed Oct 17, 2014
    Configuration menu
    Copy the full SHA
    ccd1ef9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dc4c300 View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2016

  1. Configuration menu
    Copy the full SHA
    c73fae5 View commit details
    Browse the repository at this point in the history
  2. [lint] Long line split

    init-js committed Aug 13, 2016
    Configuration menu
    Copy the full SHA
    cff30e7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a44cfde View commit details
    Browse the repository at this point in the history
  4. [bugfix] Allow flymake to digest errors on long lines faster. (e.g. m…

    …inified sections)
    
      This adds an HTTP POST parameter called 'showCode' to enable/disable
      showing code evidence lines after each error line. Hiding error code
      snippets dramatically reduces the amount of data returned.
    
      Errors in minified content would cause the full line to be returned for
      each error. Flymake is slow at parsing content, in blocks of 4KiB, to the
      point where using jshint-mode on minified files or files with long lines
      caused emacs to hang.
    
      the default value for showCode is '0', hiding content.
    init-js committed Aug 13, 2016
    Configuration menu
    Copy the full SHA
    2db42ca View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3dffa6f View commit details
    Browse the repository at this point in the history