mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-11-23 21:54:45 +02:00
ignore/types: add Qt types for resource files and ui declaration
qrc[1] are the resource files for data related to user interfaces, and ui[2] is the extension that the Qt Designer generates, for Widget based projects. Note that the initial PR used `ui` as a name for `*.ui`, but this seems overly general. Instead, we use `qui` here instead. Closes #3141 [1]: https://doc.qt.io/qt-6/resources.html [2]: https://doc.qt.io/qt-6/uic.html
This commit is contained in:
committed by
Andrew Gallant
parent
74959a14cb
commit
3f565b58cc
@@ -216,6 +216,8 @@ pub(crate) const DEFAULT_TYPES: &[(&[&str], &[&str])] = &[
|
|||||||
(&["py", "python"], &["*.py", "*.pyi"]),
|
(&["py", "python"], &["*.py", "*.pyi"]),
|
||||||
(&["qmake"], &["*.pro", "*.pri", "*.prf"]),
|
(&["qmake"], &["*.pro", "*.pri", "*.prf"]),
|
||||||
(&["qml"], &["*.qml"]),
|
(&["qml"], &["*.qml"]),
|
||||||
|
(&["qrc"], &["*.qrc"]),
|
||||||
|
(&["qui"], &["*.ui"]),
|
||||||
(&["r"], &["*.R", "*.r", "*.Rmd", "*.Rnw"]),
|
(&["r"], &["*.R", "*.r", "*.Rmd", "*.Rnw"]),
|
||||||
(&["racket"], &["*.rkt"]),
|
(&["racket"], &["*.rkt"]),
|
||||||
(&["raku"], &[
|
(&["raku"], &[
|
||||||
|
|||||||
Reference in New Issue
Block a user