Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rouge-ruby/rouge
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.2.0
Choose a base ref
...
head repository: rouge-ruby/rouge
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.2.1
Choose a head ref
  • 12 commits
  • 42 files changed
  • 4 contributors

Commits on Dec 3, 2023

  1. toml: don't highlight keys with inline tables as tables (#2002)

    A TOML table looks like:
    
    	[tblname]
    	key = 'value'
    
    You can also use inline tables like so:
    
    	[tblname]
    	key = 'value'
    	inline = {key = 'value'}
    
    However, the "inline" would get highlighted as a table (same as
    "[tblname]") rather than a regular key, which is very jarring and
    unexpected IMHO.
    
    It looks like it's been like this ever since inline tables were added in
    #1359, but I don't think anyone really wants this behaviour.
    arp242 authored Dec 3, 2023
    Configuration menu
    Copy the full SHA
    1bdd948 View commit details
    Browse the repository at this point in the history

Commits on Dec 24, 2023

  1. Move several gems in Gemfile into development group to avoid eager re…

    …quire (#2015)
    
    Bundler shouldn't require everything. Slows down the world.
    
    Co-authored-by: Ryan Davis <ryand-ruby@zenspider.com>
    tancnle and zenspider authored Dec 24, 2023
    Configuration menu
    Copy the full SHA
    7f40bd2 View commit details
    Browse the repository at this point in the history

Commits on Jan 2, 2024

  1. Configuration menu
    Copy the full SHA
    f99db81 View commit details
    Browse the repository at this point in the history
  2. Highlight float number in nginx lexer (#2017)

    * Highlight float number in nginx lexer
    
    * Add more nginx lexer samples
    tancnle authored Jan 2, 2024
    Configuration menu
    Copy the full SHA
    0ba3ba9 View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2024

  1. Configuration menu
    Copy the full SHA
    fb9aae2 View commit details
    Browse the repository at this point in the history
  2. Development related cleanup (#2018)

    * Removed unnecessary require of minitest/spec
    
    * Move require git inside of Rogue::Tasks::Git#initialize to make it lazy
    
    git gem has warnings, this quells them
    
    * Strip trailing whitespace from changelog.rake
    
    ---------
    
    Co-authored-by: Ryan Davis <ryand-ruby@zenspider.com>
    tancnle and zenspider authored Jan 7, 2024
    Configuration menu
    Copy the full SHA
    7b8df6c View commit details
    Browse the repository at this point in the history
  3. Turn on warnings via VERBOSE env (#2019)

    * Allow warnings in test if ENV["VERBOSE"]
    
    (no good way to set $VERBOSE from the outside)
    
    * Add VERBOSE option to development doc
    
    ---------
    
    Co-authored-by: Ryan Davis <ryand-ruby@zenspider.com>
    tancnle and zenspider authored Jan 7, 2024
    Configuration menu
    Copy the full SHA
    61bdda1 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2024

  1. Configuration menu
    Copy the full SHA
    0dbee7d View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2024

  1. Fix duplicate range regexp warnings (#2030)

    * Remove duplicate range regexp warnings
    
    * Fixed a LOT of warnings from scala.
    
    Turns out it was one local variable used in a lot of regexps. This
    updates the link to the reference and fixes it per reference.
    
    ---------
    
    Co-authored-by: Ryan Davis <ryand-ruby@zenspider.com>
    tancnle and zenspider authored Mar 18, 2024
    Configuration menu
    Copy the full SHA
    4a52324 View commit details
    Browse the repository at this point in the history
  2. Fix private class unused variable warnings (#2031)

    * Fix warnings about private_class_method usage
    
    * Unused variable warnings
    
    Most of these should just be removed instead of underscored... but I
    want eyeballs on this first. Some aren't being used the way they think
    they're being used.
    
    * Remove unused variable warnings in GDScript
    
    * Remove unused variables
    
    * Remove parentheses after method name warnings
    
    * Remove regexp ambiguity warnings
    
    ---------
    
    Co-authored-by: Ryan Davis <ryand-ruby@zenspider.com>
    tancnle and zenspider authored Mar 18, 2024
    Configuration menu
    Copy the full SHA
    2fa465a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    db3f4c7 View commit details
    Browse the repository at this point in the history
  4. Release v4.2.1 (#2032)

    tancnle authored Mar 18, 2024
    Configuration menu
    Copy the full SHA
    0f4bb7d View commit details
    Browse the repository at this point in the history
Loading