kiryph

Results 117 comments of kiryph

### What is the status of this breaking change (Feb 2024)? I am interested in multidigraphs with group elements as edge labels ([gain graphs](https://en.wikipedia.org/wiki/Gain_graph)) which are currently not supported: ```gap...

@james-d-mitchell Thanks for your detailed answer and insights to the way multidigraphs are implemented in Digraphs. The issue with specifying multi edges is understandable. I checked for comparison quivers and...

>Instead of pycalcium it is currently possible to use flint_ctypes: https://github.com/flintlib/flint/blob/main/src/python/flint_ctypes.py I am not sure if this helps me. I had a simple method written for the [GAP system](https://www.gap-system.org/) which...

@fredrik-johansson Thanks for your help. Yes, this works as expected with Flint 3.1.0 without python-flint: I have updated my GAP code accordingly: ```gap PYTHONPATH := Filename(DirectoriesSystemPrograms(), "python3"); PYTHON_FLINT3_DIRECTORY := Directory("~/Repositories/flint-3.1.0/src/python");...

Does evernote use `tinymce` as its editor component? According to https://www.tinymce.com/docs/advanced/keyboard-shortcuts/ the action `insert link` should be by default `Cmd+k` but does not work on evernote. It works here on...

I miss following `[`/`]` mappings from vim-unimpaired - `[`/ `]` insert empty line above/below - `[e`/ `]e` moving lines around (I do not like the arrow based mappings from vscode)...

A first try to define the unimpaired mappings `[`, `]`, `[e`, `]e`: ```json { "vim.normalModeKeyBindings": [ { "before": [ "[", " " ], "after": [ "O", "", "j", "0" ]...