Omer Ozarslan
Omer Ozarslan
I am using lessspace.vim plugin to remove white spaces when I switch to normal mode. Currently switching windows/panes while insert mode triggers InserrtLeave due to inoremap command prefix and it...
This patch adds a customization point `YAML::decode_dispatcher::dispatch` which: - allows decoding types that aren't default constructible, - delegates to `YAML::convert::decode` by default for backward compatibility, - is enabled only when...
This patch provides an option for users to use their own template file instead of hardcoded `template.py` with "--template" argument. It also matches placeholders with arbitrary level of indentations. Thanks...
Fixes #35. This PR fixes overwriting tab address incorrectly when URL redirection is done while loading scripts, images, styles etc. See #35 for two examples. This seems like the preferred...
In the plugin that I'm using with Venu, vim native menus are modified upon entering and leaving a buffer (on BufEnter and BufLeave). Currently, vim doesn't provide any proper ways...
Hello again, I realized that vim doesn't allow function callbacks starting with lowercase letter in the global (`g:`) scope a while ago. I realized this while I was trying to...
This PR enables implementing `ToSql` for types that represent lists. Below example starts working: ```rust #[derive(Debug, PartialEq, Eq)] struct MyList(Vec); impl ToSql for MyList { fn to_sql(&self) -> crate::Result
- Add feature flags for `std::ranges` and `std::views::as_const` detection. - Extend `StlContainerView` with a `std::ranges::view` specialization. - Introduce `internal::ValueType` to deduce element/value type for both STL containers and ranges, while...
This is a small patch to avoid strict aliasing issues manifested in GCC I came across a while ago. The test case was complex and the failing assertion with a...