Adam Willats

Results 15 comments of Adam Willats

`console.log( myArray.toString() )` to get a string representation, possibly condensed or `console.log ( myArray.tolist() )` to print the entire array as a js array both work for me. I would...

I've put together a simple python wrapper to collections.deque and a numpy implementation of a 2D buffer (with some simple speed tests) over at https://brian.discourse.group/t/delay-in-continuous-connections/509/8

This would also allow IDTxl to be run in web environments through pyodide: https://pyodide.org/en/stable/usage/loading-packages.html

I'd like to request adding `wikEd diff` ([project discussion page](https://en.wikipedia.org/wiki/User_talk:Cacycle/wikEdDiff), [online interface](http://cacycle.altervista.org/wikEd-diff-tool.html)) to the list of javascript diffing libraries to be integrated eventually. It does quite a good job of...

maybe as simple as adding: ```lua local Vimrc = {} function Vimrc.get_headings(filepath, start, total) local headings = {} local index = start local matches = { '"" ', '""" ',...

Hacked something together over on [awillats/telescope-heading.nvim : feature-vimrc-support](https://github.com/awillats/telescope-heading.nvim/tree/feature-vimrc-support) and it works! let me know if you think it would be appropriate to submit a pull request or whether there's more...

I might be missing something about the semantics of what constitutes a header... I guess part of the problem is if there isn't a single agreed upon syntax for section...

More generally it would be nice for the plugin to be more extensible / customizable with options like: _(please excuse what may be non-functional lua, I'm not super familiar with...

```css .markdown-preview.markdown-preview { // modify your style here /* Heading numbering, inspired by Typora https://support.typora.io/Auto-Numbering/ */ counter-reset: h1; h1 { counter-reset: h2 } h2 { counter-reset: h3 } h3 {...

I think applying this "multiples of the same comment for header levels" beyond markdown (and neorg) is wishful thinking on my part. I tried to scan some .vimrc or init.lua...