sqry-cli 13.0.7

CLI for sqry - semantic code search
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use clap::ValueEnum;

#[derive(Clone, Copy, Debug, PartialEq, Eq, ValueEnum)]
pub enum SortField {
    /// Sort by file path (lexicographic), then line/column, then name
    File,
    /// Sort by line number, then column, then file path
    Line,
    /// Sort by symbol name (lexicographic), then file path, then line
    Name,
    /// Sort by symbol kind (lexicographic), then name, then file path
    Kind,
}