-
Is there a way of using |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Oh that's a tricky use case I did not consider, or might've but overlooked the usage of null as removing something 🤔. I don't think it's possible with high level api. You would need to use sqlite.db methods, like If you can update the whole row, then it might work. |
Beta Was this translation helpful? Give feedback.
-
@kkharji, I just wanted to say thanks for all the support. I've now published papis.nvim which wouldn't have been possible without all your effort! |
Beta Was this translation helpful? Give feedback.
Oh that's a tricky use case I did not consider, or might've but overlooked the usage of null as removing something 🤔. I don't think it's possible with high level api. You would need to use sqlite.db methods, like
sqlite.db:eval
orsqlite.db:execute
.If you can update the whole row, then it might work.