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

File colors #282

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

File colors #282

wants to merge 10 commits into from

Commits on Mar 12, 2022

  1. Configuration menu
    Copy the full SHA
    23ca6e6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    86a1f58 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a85a503 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ae3c3a1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d4b0ce7 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9a764b2 View commit details
    Browse the repository at this point in the history
  7. build: improve compile speed for file colors map

    Looks like GNU's C++ compiler doesn't like `m[k] = v`, since it slows
    down the compile time to a crawl.  Using `std::make_pair(k, v)` or `{k,
    v}` seems to not cause any issues, and the compile speed doesn't seem to
    be affected at all.
    vednoc committed Mar 12, 2022
    Configuration menu
    Copy the full SHA
    d76899c View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2022

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

Commits on Mar 15, 2022

  1. Configuration menu
    Copy the full SHA
    d2331b1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    197dd52 View commit details
    Browse the repository at this point in the history