skim 4.7.0

Fuzzy Finder in rust!
Documentation
// ---------------------------------------------------------------------------
// Scoring constants
// ---------------------------------------------------------------------------
use super::Score;

/// Points awarded for each correctly matched character.
pub(super) const MATCH_BONUS: Score = 18;

/// Extra bonus when the match is at position 0 of the choice string.
pub(super) const START_OF_STRING_BONUS: Score = 16;

/// Extra bonus for a camelCase transition.
pub(super) const CAMEL_CASE_BONUS: Score = 6;

/// Bonus for each additional consecutive matched character.
pub(super) const CONSECUTIVE_BONUS: Score = 11;

/// Cost to open a gap (skip characters in choice).
pub(super) const GAP_OPEN: Score = 6;

/// Cost to extend a gap by one more character.
pub(super) const GAP_EXTEND: Score = 4;

pub(super) const TYPO_PENALTY: Score = 10;

/// Penalty for aligning a pattern char to a different choice char (typos only).
pub(super) const MISMATCH_PENALTY: Score = 16;

/// Maximum pattern length supported by the banding arrays (stack-allocated).
pub(super) const MAX_PAT_LEN: usize = 32;

/// Bandwidth for typo-mode banding. In typo mode we allow diagonal moves
/// (match/mismatch) plus UP (skip pattern char) and LEFT (skip choice char),
/// so the optimal path can wander off the main diagonal. A bandwidth of
/// `n + TYPO_BAND_SLACK` columns around the diagonal is generous enough
/// to capture all viable alignments while still pruning far-off cells.
pub(super) const TYPO_BAND_SLACK: usize = 4;

const HI_BONUS: Score = 16;
const MED_BONUS: Score = 12;
const LOW_BONUS: Score = 10;
macro_rules! set_bonus {
    ($t: ident, $($c: literal),*, $value: ident) => {
        $( $t[$c as usize] = $value; )*
    };
}
/// Per-separator bonus lookup table. Each entry holds the `Score` awarded when
/// a matched character immediately follows that ASCII codepoint. Non-separator
/// characters (and all non-ASCII codepoints) map to `0`.
///
/// Different separators can carry different bonuses — for example, `/` and `\`
/// delimit path components (high bonus), while `_` or `-` delimit sub-words
/// (standard bonus).  Entries that are `0` are not considered separators.
pub(super) const SEPARATOR_TABLE: [Score; 128] = {
    let mut t = [0 as Score; 128];

    // Full word separators
    set_bonus!(t, ' ', '[', ']', '(', ')', '{', '}', '|', HI_BONUS);

    // Paths separators
    set_bonus!(t, '/', HI_BONUS);
    #[cfg(windows)]
    {
        set_bonus!(t, '\\', HI_BONUS);
    }

    // Other common word splitters
    set_bonus!(t, '_', '.', '\'', MED_BONUS);

    // Other non-word characters
    set_bonus!(t, '-', '~', ':', ';', ',', LOW_BONUS);
    #[cfg(unix)]
    {
        set_bonus!(t, '\\', LOW_BONUS);
    }

    t
};