emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#47820: closed ([PATCH] org-table-import: Give option to import inter


From: GNU bug Tracking System
Subject: bug#47820: closed ([PATCH] org-table-import: Give option to import interactively even if filename doesn't match)
Date: Sat, 01 May 2021 08:52:01 +0000

Your message dated Sat, 01 May 2021 10:51:00 +0200
with message-id <87o8duu9aj.fsf@gnu.org>
and subject line Re: bug#47820: [PATCH] org-table-import: Give option to import 
interactively even if filename doesn't match
has caused the debbugs.gnu.org bug report #47820,
regarding [PATCH] org-table-import: Give option to import interactively even if 
filename doesn't match
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
47820: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=47820
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] org-table-import: Give option to import interactively even if filename doesn't match Date: Fri, 16 Apr 2021 14:31:42 +0530
Hi,

Can we give small flexibility in choosing the filename interactively for
`org-table-import'?  Currently org-table-import will just throw an error
when file name doesn't have .txt, .csv or .tsv as extension.

This patch tries to add a simple yes-and-no to let user choose if they
want to continue importing or not.

diff --git a/lisp/org/org-table.el b/lisp/org/org-table.el
index 0e93fb271f..ab66859d6a 100644
--- a/lisp/org/org-table.el
+++ b/lisp/org/org-table.el
@@ -938,7 +938,8 @@ org-table-import
 - regexp  When a regular expression, use it to match the separator."
   (interactive "f\nP")
   (when (and (called-interactively-p 'any)
-            (not (string-match-p (rx "." (or "txt" "tsv" "csv") eos) file)))
+            (not (string-match-p (rx "." (or "txt" "tsv" "csv") eos) file))
+             (not (yes-or-no-p "File doesn't have .txt, .tsv or .csv as 
extension.  Do you still want to continue? ")))
     (user-error "Cannot import such file"))
   (unless (bolp) (insert "\n"))
   (let ((beg (point))

-- 
Utkarsh Singh
http://utkarshsingh.xyz



--- End Message ---
--- Begin Message --- Subject: Re: bug#47820: [PATCH] org-table-import: Give option to import interactively even if filename doesn't match Date: Sat, 01 May 2021 10:51:00 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux)
Hi Utkarsh,

Utkarsh Singh <utkarsh190601@gmail.com> writes:

> Can we give small flexibility in choosing the filename interactively for
> `org-table-import'?  Currently org-table-import will just throw an error
> when file name doesn't have .txt, .csv or .tsv as extension.

Applied in master as commit 7c99d1555, thanks.

Please see the commit changelog for future patches:
https://code.orgmode.org/bzg/org-mode/commit/7c99d1555

Also https://orgmode.org/worg/org-contribute.html#commit-messages give
more detailed directions.

Thanks,

-- 
 Bastien


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]