Subhaditya Nath

Results 86 comments of Subhaditya Nath

Looking at past releases, it looks like almost every time a commit is made, the version is bumped. So, I would suggest this workflow - - **Workflow 1**: `on: commit`...

Taken from https://github.com/subnut/nvim-ghost.nvim/blob/main/.github/workflows/create_release.yaml Creates a GitHub Release when a new tag (of the format `v*`) is pushed - ```yaml name: Create Release on: push: # Sequence of patterns matched against...

Which OS are you on? I had tried it once, but I couldn't get it working reliably across all platforms. When you factor in the fact that many people run...

Just re-discovered this issue. :laughing: I've left neovim and ghosttext long since, but I don't want to let this plugin rot unmaintained. After reading raghur's code, it looks like this...

I am hesitant to answer at stackoverflow. So here's my two cents - - `git diff --patch --word-diff=porcelain file2 file1 > temp` - `python script.py temp file3` This is the...

> When I run `git diff --patch --word-diff=porcelain file2 file1` it outputs nothing. Cannot reproduce. See my GIF - ![gifcast_201115180421](https://user-images.githubusercontent.com/56714626/99185031-1f00d980-276d-11eb-826c-dc1acc5371ea.gif)

An updated script - ```python # new script # only replaces [TODO: import sys print(sys.argv) if not len(sys.argv) == 3: print("Please mention only two files, in-file and out-file") sys.exit(1) with...

For reference, here are the files - ### file1 ``` /** * Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec quis sem ut * felis imperdiet elementum. Etiam eu...

Now here's `file3` , i.e. output of the scripts - ### Old script output ``` /** * Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec quis sem ut *...

Sorry, there's a mistake in the updated script, please wait...