Andrii Savytskyi
Andrii Savytskyi
Something like that: ```lua local source = {} source.complete = function(self, params, callback) vim.fn["tmuxcomplete#async#gather_candidates"](function (raw_items) local items = {} for _, word in ipairs(raw_items) do table.insert(items, { label = word,...
`NewCreateTable` generates a `bigint` column type from the `uint64` model fields, but `bigint` is the `signed` 8-byte integer.
The entity manager is an implementation of the Facade pattern based on `rel.Changeset`. All entities have 3 states: - `new`: base state for new entity - not managed by the...
In PG correct way to generate boolean comparison via predicate`IS`, like `IS TRUE`, `IS NOT TRUE`, etc. https://www.postgresql.org/docs/9.0/datatype-boolean.html
1) `maxdepth` is global argument and must be first. 2) `maxdepth` must be with value `2` (clusters/{production,staging} 3) `PIPESTATUS` not needed
## Append **Example** ```go type Main struct { ID int `db:",primary"` Childs []*Child `ref:"id" fk:"main_id" autosave:"true" autoload:"true"` } type Child struct { ID int `db:",primary"` MainID int Name string }...
### Symfony version(s) affected all ### Description The behavior of transitions depends on the order in which they are declared. ### How to reproduce ```php private static function createWorkflowWithSameNameBackTransition(): Definition...
### Problem When setting a custom highlight in WinBar (using `%#..#`), the background is taken from `Normal` highlight ### Steps to reproduce 1) Define `Normal` and `WinBar` highlights with different...
Support Code Action Groups https://github.com/microsoft/language-server-protocol/issues/994