elzik

Results 11 comments of elzik

I have the same issue. It works fine locally on my own Windows machine but when I run on an Azure pipeline hosted agent (ubuntu-22.04) it fails with the same...

@ethomson > @elzik Azure Pipelines does a shallow clone by default. Be sure to [configure it to do a deep(er) clone](https://learn.microsoft.com/en-us/azure/devops/pipelines/repos/pipeline-options-for-git?view=azure-devops&tabs=yaml#shallow-fetch). Thanks, that was it. The error was happening when...

Is this something that is still planned? I have the same issue and I'd really prefer not to put every note in a separate folder. Thanks

Yes, this would be a really useful improvement.

I have same issue with this plugin and can also confirm that disabling the "Add to graph" config option is a workaround.

I think this might be the same issue as #18

Great, thanks for the reply.

I have the same issue here. ``` CalDavSynchronizer.DataAccess.WebDavClientException: Response status code does not indicate success: '400' ('Bad Request'). Message: at CalDavSynchronizer.DataAccess.HttpClientBasedClient.WebDavClient.d__10.MoveNext() ``` I have noticed that it seems to happen...

> Things to check/reproduce: > > * Does the same behavior take place in case `autoindent` and/or `smartpaste` is disabled? I have the indenting issue on Windows. Using this sample...

@Andriamanitra > As a workaround you could bind Ctrl+v to do a sequence of actions like this: > > { > "Ctrl-v": "command:setlocal autoindent off,Paste,command:setlocal autoindent on" > } Thanks...