Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Docker building and testing

The goal is to allow the same builds and tests to run locally, with `cargo`, and in GitHub Actions.
The goal is to allow the same builds and tests to run locally and in GitHub Actions.

For instance, we can easily build the library locally targeting an old glibc version with: `docker buildx bake -f docker/docker-bake.hcl extract-release-artifact`.

Expand Down
12 changes: 7 additions & 5 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ enum Commands {
/// double-quoted-text, secondary-text, inline-suggestion, tutorial-hint,
/// matching-char, opening-and-closing-pair, normal-text, comment,
/// env-var, markdown-heading1, markdown-heading2, markdown-heading3,
/// markdown-code, key-sequence-style, selected-text
/// markdown-code, key-sequence-style, selected-text, bash-reserved
///
/// Examples:
/// flyline set-style --default-theme dark
Expand Down Expand Up @@ -525,9 +525,11 @@ enum KeySubcommands {
///
/// Available context variables: always, bufferIsEmpty, fuzzyHistorySearch,
/// tabCompletionWaiting, tabCompletion, tabCompletionAvailable,
/// tabCompletionMultiColAvailable, tabCompletionsNoFilteredResults, tabCompletionsNoResults,
/// agentModeWaiting, agentOutputSelection, agentError, inlineSuggestionAvailable,
/// cursorAtEnd, cursorAtStart, promptDirSelect, textSelected, multilineBuffer.
/// tabCompletionMultiColAvailable, tabCompletionNoFilteredResults,
/// tabCompletionNoResults, agentModeWaiting, agentOutputSelection,
/// agentModeError, inlineSuggestionAvailable, cursorAtEnd,
/// cursorAtEndTrimmed, cursorAtStart, promptDirSelection, textSelected,
/// multilineBuffer, bufferHasAgentModePrefix, editingBufferMode.
///
/// Examples:
/// flyline key bind Ctrl+Enter always=submitOrNewline
Expand Down Expand Up @@ -609,7 +611,7 @@ enum LogSubcommands {
#[command(name = "stream", verbatim_doc_comment)]
Stream {
/// Destination: a file path, `stderr`, or `terminal`.
#[arg(value_name = "FILEPATH|terminal")]
#[arg(value_name = "FILEPATH|stderr|terminal")]
dest: String,
},
}
Expand Down
2 changes: 1 addition & 1 deletion src/palette.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ fn parse_color_to_ratatui(c: parse_style::Color) -> ratatui::style::Color {
/// All individually-configurable palette slots.
///
/// The kebab-case name of each variant (e.g. `"recognised-command"`) is used
/// in the `flyline set-colour --style NAME=STYLE` command-line interface.
/// in the `flyline set-style NAME=STYLE` command-line interface.
#[derive(
Debug, Clone, Copy, PartialEq, Eq, EnumIter, EnumMessage, strum::Display, strum::EnumString,
)]
Expand Down
Loading